免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: 落羽飘寻
打印 上一主题 下一主题

perl正则小问 [复制链接]

论坛徽章:
0
11 [报告]
发表于 2011-05-08 23:28 |只看该作者
概括下g{-1}
#=-1时找g{-1}位置上和前一位相同的数
#=-2时找g{-2}位置上和倒数第二位位相同的数
#=-3时找g{-3}位置上和倒数第三位位相同的数

论坛徽章:
0
12 [报告]
发表于 2012-02-04 22:52 |只看该作者
本帖最后由 鸡鸡哥 于 2012-02-04 23:28 编辑
  1. #!/usr/bin/perl -w
  2. use 5.010;
  3. $_ = "yabba dabba doo";
  4. if (/abba/) {
  5. print "1 It matched!\n";
  6. }else{
  7. print "1 it is not matched\n";
  8. }
  9. $_ = "faceface";
  10. if (/(face)+/) {
  11. print "2 It matched!\n";
  12. }else{
  13. print "2 it is not matched\n";
  14. }

  15. $_ = "yabba dabcba doo";
  16. if (/y(..).. d\1/) {
  17. print "3 It matched!\n";
  18. }else{
  19. print "3 it is not matched\n";
  20. }

  21. $_ = "aa11bb";
  22. if (/(.)(.)\g{-1}11/) {
  23. print "4 It matched!\n";
  24. }else{
  25. print "4 it is not matched\n";
  26. }



  27. 结果是:
  28. [code]$ ./c1.pl
  29. 1 It matched!
  30. 2 It matched!
  31. 3 It matched!
  32. 4 it is not matched
复制代码
[/code]回复 11# 落羽飘寻


    晕了,看了一整,我也是不明白这个g{-1}


您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP