您好,登錄后才能下訂單哦!
首先來個簡單的例子,利用Python實現(xiàn)匹配163郵箱的代碼:
#-*- coding:utf-8 -*- __author__ = '楊鑫' import re text = input("Please input your Email address:\n"): if re.match(r'[0-9a-zA-Z_]{0,19}@163.com',text): print('Email address is Right!') else: print('Please reset your right Email address!')
接著來一個匹配所有郵箱格式的代碼:
#-*- coding:utf-8 -*- __author__ = '楊鑫' import re text = input("Please input your Email address:\n") if re.match(r'^[0-9a-zA-Z_]{0,19}@[0-9a-zA-Z]{1,13}\.[com,cn,net]{1,3}$',text): #if re.match(r'[0-9a-zA-Z_]{0,19}@163.com',text): print('Email address is Right!') else: print('Please reset your right Email address!')
以上這篇Python實現(xiàn)正則表達式匹配任意的郵箱方法就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。