标签:find 书写规则 返回 world 位置 贪婪 需要 port 贪婪模式
.*?
这种方式就是非贪婪模式,或者说是惰性模式>>> import re
>>> str = '<div>---hello---</div><div>---world---</div>'
>>> print(re.findall(r'<div>(.*?)</div>', str)) #非贪婪模式
['---hello---', '---world---']
>>> print re.findall(r'<div>(.*)</div>', str) #贪婪模式
['---hello---</div><div>---world---']
标签:find 书写规则 返回 world 位置 贪婪 需要 port 贪婪模式
原文地址:https://www.cnblogs.com/aduner/p/12241154.html