- 论坛徽章:
- 0
|
本帖最后由 tempo8 于 2012-05-18 19:56 编辑
勉强解决!可是以上问题依然不懂!并且忽略了中文字符! - use strict;
- use warnings;
- my @content;
- my $word;
- my %hash_file2;
- my $i = 1;
- my $count;
- open my $file2, "B.txt";
- while(<$file2>) {
- chomp;
- $hash_file2{$i} = $_;
- $i++;
- }
- close $file2;
- open my $file1, "A.txt";
- while ($word = <$file1>) {
- chomp($word);
- $count = grep {/\b$word\b/} values %hash_file2;
- push @content, $word if $count > 0;
- }
- print "@content\n";
- close $file1;
复制代码 http://bbs.chinaunix.net/thread-3744895-1-1.html
这个给力!可以解决匹配中文! |
|