它以字符类 [az] 表示的 1 到 6 个小写字母开头
小写字母后跟可选的下划线 i、e 零或一次出现的 _ 字符
可选的下划线后跟由字符类 [0-9] 表示的 0 到 4 个可选数字
必须以@example.com 结尾
import re
re.match('^[a-z]+([_ or number]+)mustendwith.example.com, addressToVerify)
结果:
bob@example.com True
bob_@example.com True
bob_1@example.com True
bob0_@example.com False #since afternumber _ must not come
bob1@gmail.com False
我对python很陌生,任何人都可以帮助我。
我已经尝试但无法实现
import re
re.match('^[a-z]+([_ or number]+)mustendwith.example.com, addressToVerify)
相关分类