2

好的,首先,这是我的代码:

#!/usr/bin/perl

use open qw(:utf8 :std);

use utf8;

print "Which file do you want to search?\n";

$file = <>;

if ($file =~ /^\s*$/) {
    $file = "test.txt";
}

open (FILE, $file) or die("Could not open file.");

%hash;

while (<FILE>) {
    $hash{$_}++ for split /\W+/;
}

$count = 0;

for (sort {
        $hash{$b} <=> $hash{$a}
                  ||
           lc($a) cmp lc($b)
                  ||
              $a  cmp  $b
     } keys %hash )

{
    next unless /\w/;
    printf "%-20s %5d\n", $_, $hash{$_} if ($count <= 9);
    $count++;
}

我只想计算仅包含 AZ 和 az 的单词,但此代码也计算数字。我必须做什么?

这是一个输出示例:

Car                     18
5                       11
Test                    11
Task                    10
Perl                     7
School                   6
Hi                       5
Tired                    5
Word                     4
bye                      3

如您所见,列出了不应该发生的数字 5。

谢谢!

4

1 回答 1

9
++$hash{$_} for grep /^[a-zA-Z]+\z/, split /\W+/;

当然,您可能指的是仅包含字母的单词。

++$hash{$_} for grep /^\pL+\z/, split /\W+/;
于 2013-10-21T02:55:48.343 回答