open(In,"dict.txt"); while(<In>){ chomp; if(/(.+)=>(.+)/){ $hash{$2}=$1; } } close(In); $i=0; foreach $m(sort keys %hash){ @arr=split(" ",$m); foreach $d(@arr){ if($d=~/[\x80-\xff].+/){ #(存疑) $i++; print "$d\n"; print "$i\n"; } } }
抽取这个词典中所有独立的汉语译文并统计其频次 ?
最新推荐文章于 2024-05-26 11:54:05 发布