gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-30 00:03:14 25 4
gpt4 key购买 nike

我尝试使用 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 不同(未找到 => 返回 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com