正则表达式-邮箱的判断
Posted Kermit.Li
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了正则表达式-邮箱的判断相关的知识,希望对你有一定的参考价值。
import re def emaills(e): if (len(e) >= 5): if re.match("[a-zA-Z0-9]+\@[a-zA-Z0-9]+\.+[a-zA-Z]",e): return ‘correct‘ return ‘error‘ e = raw_input(‘please emaill:‘) print e a = emaills(e) print a
以上是关于正则表达式-邮箱的判断的主要内容,如果未能解决你的问题,请参考以下文章