免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1412 | 回复: 9
打印 上一主题 下一主题

求解perl的问题? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-05-17 22:10 |只看该作者 |倒序浏览
my @content;
my $word;
open FD1, "<file1";
open FD2, "<file2";
while ($word = <FD1>) {
  chomp($word);
  @content = grep {/\b$word\b/} <FD2>
}
print @content;

file1文件的每行一个单词
明明file2里有file1中的单词 可content的内容是空的 请问哪里出错了

论坛徽章:
46
15-16赛季CBA联赛之四川
日期:2018-03-27 11:59:132015年亚洲杯之沙特阿拉伯
日期:2015-04-11 17:31:45天蝎座
日期:2015-03-25 16:56:49双鱼座
日期:2015-03-25 16:56:30摩羯座
日期:2015-03-25 16:56:09巳蛇
日期:2015-03-25 16:55:30卯兔
日期:2015-03-25 16:54:29子鼠
日期:2015-03-25 16:53:59申猴
日期:2015-03-25 16:53:29寅虎
日期:2015-03-25 16:52:29羊年新春福章
日期:2015-03-25 16:51:212015亚冠之布里斯班狮吼
日期:2015-07-13 10:44:56
2 [报告]
发表于 2012-05-17 22:32 |只看该作者
你一次就把 FD2 读完了,只要第一个 $word 不在 FD2 那 @content 必然为空了

论坛徽章:
0
3 [报告]
发表于 2012-05-17 22:35 |只看该作者
my @content;
my $word;
open FD1, "<file1";
while ($word = <FD1>) {
  open FD2, "<file2";
  chomp($word);
  @content = grep {/\b$word\b/} <FD2>
  close FD2
}
print @content;
那这样呢?

论坛徽章:
2
射手座
日期:2014-10-10 15:59:4715-16赛季CBA联赛之上海
日期:2016-03-03 10:27:14
4 [报告]
发表于 2012-05-18 00:22 |只看该作者
回复 3# yizhengming


    用push 把每个$word grep出来的放进@content里,否则只会留下最后一个$word匹配的东东
   
另外,你这样做的效率不高,尤其是file2非常大,我建议你 先遍历file2,建一个hash {keyword => content},再遍历file1,判断file1的$word是否存在在于hash,这样每个file只读一遍

论坛徽章:
0
5 [报告]
发表于 2012-05-18 11:38 |只看该作者
my @content;
my $word;
my %hash_file2;
my $i = 1;
my $count;
open FD1, "<file1";
open FD2, "<file2";
while(<FD2>) {
     chomp;
     $hash_file2{$i} = $_;
     $i++;
}
while ($word = <FD1>) {
    chomp($word);
    $count = grep {/\b$word\b/}  values %hash_file2;
    push @content, $word if $count > 0;
}
print @content;
你的意思是这样吗?

论坛徽章:
0
6 [报告]
发表于 2012-05-18 11:47 |只看该作者
my @content;
my $word;
my %hash_file2;
my $i = 1;
my $count;
open FD1, "<file1";
open FD2, "<file2";
while(<FD2>) {
     chomp;
     $hash_file2{$i} = $_;
     $i++;
}
while ($word = <FD1>) {
    chomp($word);
    $count = grep {/\b$word\b/}  values %hash_file2;
    push @content, $word if $count > 0;
}
print @content;
你的意思是这样吗?


   

论坛徽章:
2
射手座
日期:2014-10-10 15:59:4715-16赛季CBA联赛之上海
日期:2016-03-03 10:27:14
7 [报告]
发表于 2012-05-18 12:10 |只看该作者
回复 6# yizhengming


    给些数据看看吧

论坛徽章:
0
8 [报告]
发表于 2012-05-18 13:28 |只看该作者
谢谢里 我刚刚在shell下测试了 能完成我的功能  

论坛徽章:
0
9 [报告]
发表于 2012-05-18 17:46 |只看该作者
请问文件句柄“关闭”的问题!
从代码上看,文件句柄确实已经打开了。百思不得其解。
文件句柄的文件路径也没有问题!

while(<FD2>) {#readline() on closed filehandle FD2
while ($word = <FD1>) {#readline() on closed filehandle FD1

C:\strawberry\perl\bin>perl word-map.pl <A.txt <B.txt >111.txt

论坛徽章:
0
10 [报告]
发表于 2012-05-18 19:49 |只看该作者
本帖最后由 tempo8 于 2012-05-18 19:56 编辑

勉强解决!可是以上问题依然不懂!并且忽略了中文字符!
  1. use strict;
  2. use warnings;

  3. my @content;
  4. my $word;
  5. my %hash_file2;
  6. my $i = 1;
  7. my $count;

  8. open my $file2, "B.txt";
  9. while(<$file2>) {
  10.      chomp;
  11.      $hash_file2{$i} = $_;
  12.      $i++;
  13. }
  14. close  $file2;
  15. open my $file1, "A.txt";
  16. while ($word = <$file1>) {
  17.     chomp($word);
  18.     $count = grep {/\b$word\b/}  values %hash_file2;
  19.     push @content, $word if $count > 0;
  20. }
  21. print "@content\n";
  22. close  $file1;
复制代码
http://bbs.chinaunix.net/thread-3744895-1-1.html
这个给力!可以解决匹配中文!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP