http://blog.csdn.net/tdmyl/article/list/1
在Python使用正则表达式需要使用re(regular exprssion)模块,使用正则表达式的难点就在于如何写好p=re.compile(r' 正则表达式')的内容。
下面是在Python中使用正则表达式同时匹配邮箱和电话并进行简单的分类的代码,本文只进行了简单的分类,读者可使用补充部分提供的信息进行详细分类。
import re
p=re.compile(r'^[\w\d]+[\d\w\_\.]+@([\d\w]+)\.([\d\w]+)(?:\.[\d\w]+)?$|^(?:\+86)?(\d{3})\d{8}$|^(?:\+86)?(0\d{2,3})\d{7,8}$')
def mail_or_phone(p,s):
m=p.match(s)
if m==None:
print 'mail address or phone number is wrong'
else:
if m.group(1)!=None:
if m.group(1)=='vip':
print 'It is %s mail,the address is %s' %(m.group(2),m.group())
else:
print 'It is %s mail,the address is %s' %(m.group(1),m.group())
else:
if m.group(3)!=None:
print 'It is mobilephone number,the number is %s' %m.group()
else:
print 'It is telephone number,the number is %s' %m.group()
if __name__=='__main__':
s=[]
s.append('tju_123@163.com')
s.append('123@tju.edu.cn')
s.append('123456@vip.qq.com')
s.append('+8615822123456')
s.append('0228612345')
for i in range(len(s)):
mail_or_phone(p,s[i])
结果如下:
It is 163 mail,the address is tju_123@163.com
It is tju mail,the address is 123@tju.edu.cn
It is qq mail,the address is 123456@vip.qq.com
It is mobilephone number,the number is +8615822123456
It is telephone number,the number is 0228612345
该代码中正则表达式分为三部分:
(1) ^[\w\d]+[\d\w_.]+@([\d\w]+).([\d\w]+)(?:.[\d\w]+)?$ 这部分用于匹配邮箱
(2) ^(?:+86)?(\d{3})\d{8}$ 这部分用于匹配移动电话
(2) ^(?:+86)?(0\d{2,3})\d{7,8}$ 这部分用于匹配固定电话
邮箱中@后面有的有一个‘.',有的有两个‘.’,而且有的@后面紧挨着的是‘vip’,而不是‘qq’等邮箱标识
移动电话和固定电话在来电显示中经常出现‘+86’,所以匹配过程中要注意这一点
正则表达式中使用了()进行分组,然后可以通过group(i)来获得相应分组的信息来进行判断
补充:
1.常用的邮箱:
QQ: @qq.com或者@foxmail.com
网易: @163.com、@126.com、@yeah.NET
google: @gmail.com
新浪: @sina.com、@sina.cn
搜狐: @sohu.com
高校: @tju.edu.cn等
2.中国三大运营商手机号段
移动:134、135、136、137、138、139、147、150、152、154、157、158、159、182、183、187、188
联通:130、131、132、155、156、185、186
电信:133、153、180、189
正则表达式——古老而又强大的文本处理工具。仅用一段简短的表达式语句,就能快速地实现一个复杂的业务逻辑。掌握正则表达式,让你的开发效率有一个质的飞跃。
正则表达式经常被用于字段或任意字符串的校验,比如下面这段校验基本日期格式的JavaScript代码:
var reg = /^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2})$/;
var r = fieldValue.match(reg);
if(r==null)alert('Date format error!');
1、校验密码强度
密码的强度必须包含大小写字母和数字的组合,不能使用特殊字符,长度在8-10之间
^(?=.\d)(?=.[a-z])(?=.*[A-Z]).{8,10}$
2、校验中文
字符串只能是中文
^[\u4e00-\u9fa5]{0,}$
3、由数字,26个英文字母或下划线组成的字符串
^\w+$
4、校验E-Mail 地址
[\w!#$%&'+/=?^_{|}~-]+(?:\\.[\\w!#$%&'*+/=?^_
{|}~-]+)@(?:\w?\.)+\w?
5、校验身份证号码
15位:
^[1-9]\d{7}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}$
18位:
^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$
6、校验日期
“yyyy-mm-dd“ 格式的日期校验,已考虑平闰年
^(?:(?!0000)[0-9]{4}-(?:(?:0[1-9]|1[0-2])-(?:0[1-9]|1[0-9]|2[0-8])|(?:0[13-9]|1[0-2])-(?:29|30)|(?:0[13578]|1[02])-31)|(?:[0-9]{2}(?:0[48]|[2468][048]|[13579][26])|(?:0[48]|[2468][048]|[13579][26])00)-02-29)$
7、校验金额
金额校验,精确到2位小数
^[0-9]+(.[0-9]{2})?$
8、校验手机号
下面是国内 13、15、18开头的手机号正则表达式
^(13[0-9]|14[5|7]|15[0|1|2|3|5|6|7|8|9]|18[0|1|2|3|5|6|7|8|9])\d{8}$
9、判断IE的版本
^.MSIE 5-8?(?!.Trident\/[5-9]\.0).*$
10、校验IP-v4地址
\b(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b
11、校验IP-v6地址
(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))
12、检查URL的前缀
if (!s.match(/^[a-zA-Z]+:\/\//)){
s = 'http://' + s;}
13、提取URL链接
^(f|ht){1}(tp|tps):\/\/([\w-]+\.)+[\w-]+(\/[\w- ./?%&=]*)?
14、文件路径及扩展名校验
([a-zA-Z]\:|\\)\\([\\]+\\)[^\/:?"<>|]+\.txt(l)?$
15、提取Color Hex Codes
^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$
16、提取网页图片
\< [img][^\\>][src] *= [\"\']{0,1}([^\"\'\ >])
17、提取页面超链接
(<a\s(?!.\brel=)[^>])(href="https?:\/\/)((?!(?:(?:www\.)?'.implode('|(?:www\.)?', $follow_list).'))[^"]+)"((?!.\brel=)[>]*)(?:[>]*)>
18、查找CSS属性
^\s[a-zA-Z\-]+\s[:]{1}\s[a-zA-Z0-9\s.#]+[;]{1}
19、抽取注释
20、匹配HTML标签
<\/?\w+((\s+\w+(\s=\s(?:".?"|'.?'|[\^'">\s]+))?)+\s|\s)\/?>