共计 531 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用 re 模块中的 findall() 函数来查找字符串中的所有匹配项。
语法:
re.findall(pattern, string, flags=0)
参数说明:
- 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 循环遍历列表,并打印每个电子邮件地址。
丸趣 TV 网 – 提供最优质的资源集合!
正文完