gpt4 book ai didi

python - sre_constants.error : nothing to repeat

转载 作者:太空宇宙 更新时间:2023-11-03 14:19:52 24 4
gpt4 key购买 nike

我正在使用正则表达式,但出现错误:

Traceback (most recent call last):
File "tokennet.py", line 825, in <module>
RunIt(ContentToRun,Content[0])
File "tokennet.py", line 401, in RunIt
if re.search(r'\b'+word+r'\b', str1) and re.search(r'\b'+otherWord+r'\b', str1) and word != otherWord:
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/re.py", line 142, in search
return _compile(pattern, flags).search(string)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/re.py", line 242, in _compile
raise error, v # invalid expression
sre_constants.error: nothing to repeat

我环顾四周,似乎这个错误与 * 有关,但不确定为什么我会得到它。我必须对 str1 做什么才能停止获取它? str1 是一个大文本文件中的一行,当我打印 str1 以查看具体是哪一行有问题时,它看起来像一个普通的行...

最佳答案

我建议您使用 re.escape(word),因为您的变量 word 可能包含任何正则表达式特殊字符。我认为错误是由于变量中存在特殊字符引起的。通过使用 re.escape(variable-name),它转义了变量中存在的任何特殊字符。

if re.search(r'\b'+re.escape(word)+r'\b', str1) and re.search(r'\b'+re.escape(otherWord)+r'\b', str1) and word != otherWord:

关于python - sre_constants.error : nothing to repeat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29056507/

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