@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); $to_ucs[$i] = $u; if ($u > 0) { $from_ucs{$u} = $i; } } # compatibility with GBK(CP936), GB18030 delete $from_ucs{$to_ucs[0x2124]}; delete $from_ucs{$to_ucs[0x212A]}; $from_ucs{0x00B7} = 0x2124; $from_ucs{0x2014} = 0x212A; $to_ucs[0x2124] = 0x00B7; $to_ucs[0x212A] = 0x2014; # print OUT < $b } keys %from_ucs; $nucs = @ucs + 0; print OUT <