码迷,mamicode.com
首页 > 其他好文 > 详细

正则表达式

时间:2017-11-26 11:13:39      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:python   ref   hello   tar   就是   http   tps   aaa   字符   

验证/参考资料

1. >>> s=‘aaa111aaa,bbb222,333ccc,444ddd444dd,555eee666eee,fff777ggg‘

>>> re.findall(r‘(?P<file>[a-z]+)\d+(?P=file)‘, s)

以(?P<file>\d)helloworld(?P=file) 这样匹配到的模式一定是helloworld前面有一个数字并且后面有一个一样的数字。可能为1helloworld1这样子,但不能是1helloworld2。因为后面的的(?P=file)就是去引用别名为file的分组捕获到的字符串。

正则表达式

标签:python   ref   hello   tar   就是   http   tps   aaa   字符   

原文地址:http://www.cnblogs.com/guxuanqing/p/7898321.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!