摘要: 例如从下面三个字符串中查找不包含my的hello world:hello_your_worldhello_my_worldhello_his_world要匹配不包含my的字符串,可以用hello((?!my).)*world,使用sublime text测试如下:解释:hello:包含hello(:分组开始(?!my):使用否定式前瞻,表示从hello开始后面不能有my,注意这里的前瞻指的是在.后... 阅读全文
posted @ 2013-08-05 14:42 T_shell 阅读(1685) 评论(0) 推荐(0) 编辑