免费注册 查看新帖 |

Chinaunix

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

求助:正则表达式 有没有和关系? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-06-15 01:18 |只看该作者 |倒序浏览
本帖最后由 miocn 于 2010-06-15 01:26 编辑

求助各位老大:
          如何通过一个表达式判断字符串包括 几个字符?
          例如以下文本
          you and me
          he and me
          me and he
          判断条件是文本中包括  me 和 he两个字符
         结果:
         he and me
         me and he
-------------------------------
请问这个表达式如何写,谢谢

论坛徽章:
0
2 [报告]
发表于 2010-06-15 01:23 |只看该作者
自己
顶一下

论坛徽章:
0
3 [报告]
发表于 2010-06-15 03:56 |只看该作者
  1. #!/bin/env perl

  2. use strict;
  3. use warnings;

  4. while (<DATA>)
  5. {
  6.     if (/\b(he|me)\b.*?(?!\1)\b(?:he|me)\b/)
  7.     {
  8.         print;
  9.     }
  10. }

  11. __DATA__
  12. you and me
  13. he and me
  14. he and he
  15. me and me
  16. me and he
复制代码

论坛徽章:
0
4 [报告]
发表于 2010-06-15 08:27 |只看该作者
谢谢 三楼。

论坛徽章:
0
5 [报告]
发表于 2010-06-15 08:42 |只看该作者
三楼的兄弟 ,可能我问的不对,所以答案也准确,我要做的判断是:
一句话中是否既包括“ 单词一” 又包括 “单词2” 又包括“单词3” ,如果包括三个全部单词 则返回真,否则为假。
例如: 检索词为 “this” “pen”
this  is  a pen --  true
this is  a dog --- false
pen is this   -- true

继续请各位 指点

论坛徽章:
0
6 [报告]
发表于 2010-06-15 09:57 |只看该作者
本帖最后由 黑色阳光_cu 于 2010-06-15 11:55 编辑
三楼的兄弟 ,可能我问的不对,所以答案也准确,我要做的判断是:
一句话中是否既包括“ 单词一” 又包括 ...
miocn 发表于 2010-06-15 08:42
  1. #!/bin/env perl

  2. use strict;
  3. use warnings;
  4. use 5.010;

  5. while (<DATA>)
  6. {
  7.         if (/\b(this|is|pen)\b.*?\b(?!\1)((?1))\b.*?\b(?!\1|\2)(?1)\b/)
  8.         {
  9.                 print;
  10.         }
  11. }

  12. __DATA__
  13. this  is  a pen --  true
  14. this is  a dog --- false
  15. pen is this   -- true
  16. this is
  17. is pen
  18. this this this
  19. this is this
  20. this is is
  21. is pen pen
  22. is is pen
  23. pen is this
复制代码

论坛徽章:
0
7 [报告]
发表于 2010-06-15 10:12 |只看该作者
  1. sub match {
  2.     my $str = shift;
  3.     foreach ( @_ ) {
  4.         return "false" if $str !~ /($_)/;
  5.     }
  6.     return "true";
  7. }

  8. while( <DATA> ) {
  9.     print match( $_, "this", "pen" ), "\t$_";
  10. }

  11. __DATA__
  12. this  is  a pen --  true
  13. this is  a dog --- false
  14. pen is this   -- true
复制代码
必须要一句话匹配出结果么?

论坛徽章:
0
8 [报告]
发表于 2010-06-15 10:29 |只看该作者
谢谢 6楼 7楼,  7楼的兄弟正解,但是我需要一句话匹配出结果。 在pyqt中过滤使用。

论坛徽章:
0
9 [报告]
发表于 2010-06-15 10:33 |只看该作者
谢谢 6楼 7楼,  7楼的兄弟正解,但是我需要一句话匹配出结果。 在pyqt中过滤使用。
miocn 发表于 2010-06-15 10:29



   


俺的结果不对?

论坛徽章:
0
10 [报告]
发表于 2010-06-15 10:37 |只看该作者
三楼的兄弟 ,可能我问的不对,所以答案也准确,我要做的判断是:
一句话中是否既包括“ 单词一” 又包括 ...
miocn 发表于 2010-06-15 08:42


试试这个
  1. #!/usr/bin/perl

  2. use strict;
  3. use warnings;

  4. while (<DATA>)
  5. {
  6.         /\bthis\b/ and /\bis\b/ and /\bpen\b/ and print;
  7. }

  8. __DATA__
  9. this  is  a pen --  true
  10. this is  a dog --- false
  11. pen is this   -- true
  12. this is
  13. is pen
  14. this this this
  15. this is this
  16. this is is
  17. is pen pen
  18. is is pen
  19. pen is this
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP