在Python中,我們可以使用re模塊的findall()函數來提取所有匹配的字符串。下面是一個簡單的示例,展示如何使用findall()函數來提取所有匹配的字符串:
import re
text = "The quick brown fox jumps over the lazy dog"
matches = re.findall(r'\b\w{3,}\b', text)
for match in matches:
print(match)
在這個示例中,我們使用正則表達式’\b\w{3,}\b’來匹配所有長度大于等于3的單詞。然后,我們使用re.findall()函數來提取所有匹配的單詞,并將它們打印出來。
運行這段代碼,會輸出以下結果:
The
quick
brown
fox
jumps
over
the
lazy
dog