gpt4 book ai didi

python - 如何在字符串中搜索单词(完全匹配)?

转载 作者:行者123 更新时间:2023-11-28 20:52:04 30 4
gpt4 key购买 nike

我正在尝试子字符串搜索

>>>str1 = 'this'
>>>str2 = 'researching this'
>>>str3 = 'researching this '

>>>"[^a-z]"+str1+"[^a-z]" in str2
False

>>>"[^a-z]"+str1+"[^a-z]" in str3
False

我想在 str3 中查看时为 True。我做错了什么?

最佳答案

你想要 Python 的 re模块:

>>> import re
>>> regex = re.compile(r"\sthis\s") # \s is whitespace
>>> # OR
>>> regex = re.compile(r"\Wthis\W")
>>> # \w is a word character ([a-zA-Z0-9_]), \W is anything but a word character
>>> str2 = 'researching this'
>>> str3 = 'researching this '
>>> bool(regex.search(str2))
False
>>> regex.search(str3)
<_sre.SRE_Match object at 0x10044e8b8>
>>> bool(regex.search(str3))
True

我有一种预感,您实际上是在寻找单词“this”,而不是周围有非单词字符的“this”。在这种情况下,您应该使用单词边界转义序列 \b .

关于python - 如何在字符串中搜索单词(完全匹配)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7641779/

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