从 URL 文本文件中提取电子邮件 ID 的 Python 程序
我们这里使用正则表达式包,从 URL 文本文件中提取电子邮件 ID。用正则表达式包,我们定义电子邮件 ID 的模式,然后使用 findall() 函数,使用该方法来检查将与该模式相匹配的文本。
Input text= Please contact us at [email protected] for further information."+\ " You can also give feedback at [email protected]" Output ['[email protected] ','[email protected]']
示例代码
import re my_text = "Please contact us at [email protected] for further information."+\ " You can also give feedback at [email protected]" my_emails = re.findall(r"[a-z0-9\.\-+_]+@[a-z0-9\.\-+_]+\.[a-z]+", my_text) print (my_emails)
输出
['[email protected]', '[email protected]’]
广告