使用Python的re模塊來使用正則表達式查找字符串。
首先,導入re模塊:
import re
然后,定義一個正則表達式模式:
pattern = r"正則表達式模式"
接下來,使用re模塊的findall()函數來查找字符串:
result = re.findall(pattern, 字符串)
最后,可以打印或處理查找結果:
print(result)
以下是一個完整的示例:
import re
pattern = r"hello"
string = "hello world hello python"
result = re.findall(pattern, string)
print(result)
輸出結果為:
['hello', 'hello']
注意,正則表達式模式可以根據需要進行自定義,以匹配特定的字符串模式。