如何找到与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']>>>
3 回答
潇潇雨雨
TA贡献1833条经验 获得超4个赞
>>> import regex as re>>> match = re.findall(r'\w\w', 'hello', overlapped=True)>>> print match['he', 'el', 'll', 'lo']
添加回答
举报
0/150
提交
取消