编程语言
首页 > 编程语言> > python从任意文件读取邮件地址输出的代码

python从任意文件读取邮件地址输出的代码

作者:互联网

如下的资料是关于python从任意文件读取邮件地址输出的代码。
# This script takes whatever you throw at stdin and outputs email addresses.
# eg. python email_extractor.py < PythonFAQ.html
# This script can be used for whatever you want, EXCEPT SPAMMING !
import sys,re
print 'n'.join(re.findall('([w.-]+@[w.-]+)',sys.stdin.read()))




 

标签:读取,script,python,whatever,sys,邮件地址,email
来源: https://www.cnblogs.com/yumiban/p/10355879.html