我最近创建了一个 Perl 脚本,它使用以下代码搜索以 D 和 E 开头的单词:
$infile = 'words.txt';
open(IN, $infile);
$count = 0;
while ($word = <IN>) {
chomp($word);
if ($word =~ /^d\w*e$/i) {
print "$word\n";
$count++;
}
}
print "$count\n";
我最近决定分叉代码并创建一个脚本来搜索六个字母的单词,并且单词中的字母按字母顺序(A 到 Z)。我打算使用位于usr/share/dict/words的 Unix 标准字典,而不是使用words.txt。如何通过修改此代码来完成此操作?