码迷,mamicode.com
首页 > 编程语言 > 详细

Python 正则表达式 贪心匹配和非贪心匹配

时间:2017-11-10 15:22:13      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:style   正则表达   python   com   匹配   mpi   compile   group   正则   

  Python的正则表达式默认是“贪心匹配”,即在有第二义的情况下,尽可能匹配最长的字符串,在正则表达式的花括号后面跟上问号,可以变为非贪心模式

>>>
>>> haRegex=re.compile(r‘(ha){3,5}‘)
>>> m=haRegex.search(‘hahahahahaha‘)
>>> print(m.group())
hahahahaha
>>>

上述输出5个ha,是贪心匹配

>>>
>>> haRegex=re.compile(r‘(ha){3,5}?‘)
>>> m=haRegex.search(‘hahahahahaha‘)
>>> print(m.group())
hahaha
>>>

上述输出3个ha,是非贪心匹配

Python 正则表达式 贪心匹配和非贪心匹配

标签:style   正则表达   python   com   匹配   mpi   compile   group   正则   

原文地址:http://www.cnblogs.com/pigwan7/p/7814353.html

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