@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); $a = $i >> 8; $b = $i & 0x00FF; if ($a >= 0xA1 && $a <= 0xFE && $b >= 0xA1 && $b <= 0xFE) { ($i >= 0xA2E6 && $i <= 0xA2E7) || next; } ($u < 0x80) && next; $to_ucs{$i} = $u; $from_ucs{$u} = $i; } # print OUT < $b } keys %from_ucs; $nucs = @ucs + 0; print OUT <