免费注册 查看新帖 |

Chinaunix

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

怎么提取perl匹配上的字符串? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-04-15 19:16 |只看该作者 |倒序浏览
本帖最后由 看薄荷天空 于 2011-04-15 19:20 编辑

我想提取部分网页中的ftp地址,写了如下脚本,可是在输出的时候,$1总是空的。
  1. #!/usr/bin/perl
  2. for($i=34271;$i<34380;$i++)
  3. {
  4.         $url = "http://www.ffdy.cc/movie/$i.html";
  5.         use LWP::Simple;
  6.         $content = get $url;
  7. #       die "Couldn't get $url" unless defined $content;
  8.         if($content =~ m/ftp.*rmvb/is)
  9.         {
  10.                 print "page $i ok\n";
  11.                 $tmp=$1;
  12.                 print "$tmp\n";
  13.         }
  14.         else
  15.         {
  16.                 print "page $i no\n";
  17.         }
  18. }
复制代码
能用$1提取匹配后的字符串吗?结果总是空的……希望大家给我指点,谢谢

论坛徽章:
1
摩羯座
日期:2014-12-29 15:59:36
2 [报告]
发表于 2011-04-15 19:51 |只看该作者
if($content =~ m/ftp.*?rmvb/is)
        {
                print "page $i ok\n";
                $tmp=$&;

论坛徽章:
0
3 [报告]
发表于 2011-04-15 19:53 |只看该作者
回复 2# ziyunfei


    太感谢了!

论坛徽章:
0
4 [报告]
发表于 2011-04-16 01:00 |只看该作者
本帖最后由 albertd 于 2011-04-16 01:02 编辑

Programming Perl

Each time a pattern successfully matches (including the pattern in a substitution), it sets the $`, $&, and $' variables to the text left of the match, the whole match, and the text right of the match. This is useful for pulling apart strings into their components

For better granularity and efficiency, use parentheses to capture the particular portions that you want to keep around. Each pair of parentheses captures the substring corresponding to the subpattern in the parentheses. The pairs of parentheses are numbered from left to right by the positions of the left parentheses; the substrings corresponding to those subpatterns are available after the match in the numbered variables, $1, $2, $3, and so on
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP