为什么re2的结果与Python中的re模块不同?

时间:2013-07-26 03:03:07

标签: python regex re2

我尝试使用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'
  1. 每次执行新字符串模式时,为什么re2输出数字 1
  2. 如何隐藏号码 1
  3. 为什么结果与re module不同(未找到=&gt;返回无)?
  4. re2版本为0.2.20。 Python为2.7

    谢谢

1 个答案:

答案 0 :(得分:5)

这是版本0.2.20的错误。请参阅此issue或此one。你最好从github克隆源代码然后安装它。不要通过pip安装它。