在Python中,可以使用re模塊中的findall()函數來查找字符串中的所有匹配項。
語法: re.findall(pattern, string, flags=0)
參數說明:
示例代碼:
import re
text = "Hello, my name is John. My email address is john@example.com. My friend's email is mary@example.com."
emails = re.findall(r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b', text)
for email in emails:
print(email)
輸出結果:
john@example.com
mary@example.com
在上面的示例中,使用了正則表達式來匹配字符串中的電子郵件地址。re.findall()函數返回一個列表,包含了所有匹配到的電子郵件地址。然后使用for循環遍歷列表,并打印每個電子郵件地址。