在字符串中搜索单词(完全匹配),可以使用正则表达式或字符串分割和比较的方法。下面是两种方法的详细介绍:
正则表达式是一种用于匹配字符串中特定模式的工具。在Python中,可以使用re
模块来实现。以下是一个示例:
import re
def search_word(text, word):
pattern = r'\b' + word + r'\b'
matches = re.findall(pattern, text)
return matches
text = "这是一个测试字符串,测试字符串包含单词测试。"
word = "测试"
result = search_word(text, word)
print(result)
字符串分割和比较的方法是将字符串分割成单词,然后逐个比较。以下是一个示例:
def search_word(text, word):
words = text.split()
matches = [w for w in words if w == word]
return matches
text = "这是一个测试字符串,测试字符串包含单词测试。"
word = "测试"
result = search_word(text, word)
print(result)
无论使用哪种方法,都可以在字符串中搜索单词(完全匹配)。在实际应用中,可以根据需求选择合适的方法。
领取专属 10元无门槛券
手把手带您无忧上云