gpt4 book ai didi

python - sre_constants.error : nothing to repeat

转载 作者:行者123 更新时间:2023-12-03 08:51:07 25 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/40515515/

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