python从任意文件读取邮件地址输出的代码
Posted 玉米帮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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.-][email protected][w.-]+)‘,sys.stdin.read()))
以上是关于python从任意文件读取邮件地址输出的代码的主要内容,如果未能解决你的问题,请参考以下文章