python 匹配从文本里面匹配相应的邮箱

#!coding=utf-8
import re
import sys


def compile_mail(file_path):

    #匹配想要的邮箱,去除不想要的内容
    
	address = re.compile(
	‘‘‘
	(?![\w\d.+][email protected])  #去除不想要的邮箱
	[\w\d.+]+   #匹配前缀
    @   
    ([\w\d.]+\.)+  #匹配域名
    com  #匹配结尾
	‘‘‘,
	re.UNICODE | re.VERBOSE)

	with open(r‘c:\333.txt‘) as fd:
		for x in fd:
			match = address.search(x)
			if match:
				print match.group()


if __name__ == ‘__main__‘:

	file_path = sys.argv[1]
	compile_mail(file_path)


本文出自 “BrotherXing” 博客,请务必保留此出处http://brotherxing.blog.51cto.com/3994225/1582195

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。