2012年4月27日 星期五

Python 筆記 Regular Express in Python

參考:http://docs.python.org/library/re.html

判斷email格式

EMAIL_RE = re.compile(r"^[\S]+@[\S]+\.[\S]+$")

def valid_email(email):
    return EMAIL_RE.match(email)

沒找到的話
valid_email(xxx) ==None

沒有留言:

張貼留言