@NAME = (); while() { chop; s/\s*$//; (($n, $m, $c) = split(" ", $_, 3)) >= 3 || next; push(@NAME, $n); $MAP{$n} = $m; $CODE{$n} = $c; } foreach $name (@NAME) { $code = $CODE{$name}; $map = $MAP{$name}; print "$name\t$map\t$code\n"; %to_ucs = (); %from_ucs = (); open(MAP, "< $map"); open(OUT, "> ${name}_ucs.map"); while() { /^#/ && next; s/#.*//; (($i, $u) = split(" ")) || next; $i = hex($i); $u = hex($u); ($u >= 0xAC00 && $u <= 0xD7A3) && next; ($i >= 0xD800) && next; ($u < 0x80) && next; $from_ucs{$u} = $i; if ($i >= 0x80) { $to_ucs{$i} = $u; } } # print OUT < $b } keys %to_ucs; $nucs = @ucs + 0; print OUT < $b } keys %from_ucs; $nucs = @ucs + 0; print OUT <