zh-xcin-2.3.04.tgz    chinese input utility for X [ FTP Site 1 ] [ FTP Site 2 ] #### my @fields = split '', $input; foreach my $field (@fields) { # what i really wanted to do was... # (undef, $names{$1}) =~ m// but that didnt work either # so I added the $foo and $bar. my ($foo, $bar) = $field =~ m!^(.*) {3}(.*).*$!x; $names{$foo} = $bar; print "$foo == $bar\n"; }