问题描述
- python 正则表达式 findall和search的问题
-
代码:
#coding=utf-8
import res = 'abc111def abc222def abc345xyz abc678xyz'
reg = r'(?<=abc)((?!abc).)+(?=xyz)'
imgre = re.compile(reg)
re.search(imgre, s)print ('re.search = ' + re.search(imgre, s).group())
print ('re.findall =', re.findall(imgre, s))结果:
re.search = 345
re.findall = ['5', '8']
跪求解释findall为啥不是['345', '678']
解决方案
正则表达式改为:
r'(?<=abc)((?:(?!abc).)+)(?=xyz)'
原因是用括号捕获重复的数字,只捕获了一个,依旧是最后一个数字。
解决方案二:
python正则表达式-findall
python正则表达式
Python 正则表达式
时间: 2024-11-08 22:07:31