如何找到与regexp重叠的匹配?
>>> match = re.findall(r'\w\w', 'hello')>>> print match['he', 'll']
因为\w意味着两个字符,所以需要“he”和“ll”。但是为什么‘el’和‘lo’不匹配判决吗?
>>> match1 = re.findall(r'el', 'hello')>>> print match1['el']>>>
杨魅力
潇潇雨雨
相关分类