摘要: 学会使用正则表达式 1. 用正则表达式判定邮箱是否输入正确。 import re a = "123456789@qq.com" b = '020-88770099' mail = re.search('\d{6,12}@[a-zA-Z0-9]+.[a-zA-Z0-9]+', a).group(0) 阅读全文
posted @ 2018-04-09 23:23 096许演杰 阅读(96) 评论(0) 推荐(0) 编辑