我尝试使用re2。
import re
print re.search('cde', 'abcdefg').group(0)
结果:
cde
但是re2结果不同
import re2
print re2.search('cde', 'abcdefg').group(0)
结果:
1
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'NoneType' object has no attribute 'group'
re2
输出数字 1 ? re module
不同(未找到=>返回None)? re2版本是0.2.20。 和 Python是2.7
谢谢
最佳答案
这是0.2.20版的错误。请参阅此issue或此one。您最好从github克隆源代码,然后安装它。不要通过pip安装它。
关于python - 为什么re2的结果与Python中的re模块不同?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17872188/