
1、url通配
^((https|http|ftp|rtsp|mms)?:\/\/)[^\s]+
匹配href="http://xxxxxxxx.html"
href="((https|http|ftp|rtsp|mms)?:\/\/)[^\s][^]+.html"
2、中文字符
[\u4e00-\u9fa5]
3、双字节字符
[^\x00-\xff]
4、空白行
\s
5、Email地址
\w[-\w.+]*@([A-Za-z0-9][-A-Za-z0-9]+\.)+[A-Za-z]{2,14}
6、手机号(国内)
0?(13|14|15|18)[0-9]{9}
7、手机号(国外)
[0-9-()()]{7,18}
8、负浮点数
-([1-9]\d*.\d*|0.\d*[1-9]\d*)
9、正浮点数
[1-9]\d*.\d*|0.\d*[1-9]\d*
10、匹配整数
-?[1-9]\d*
11、QQ号
[1-9]([0-9]{5,11})
12、邮政编码
\d{6}
13、IP
(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)
14、身份证号
\d{17}[\d|x]|\d{15}
15、格式日期
\d{4}(\-|\/|.)\d{1,2}\1\d{1,2}
16、正整数
[1-9]\d*
17、负整数
-[1-9]\d*
18、用户名
[A-Za-z0-9_\-\u4e00-\u9fa5]+



本文地址:https://blog.hellozwh.com/?post=224
版权声明:若无注明,本文皆为“起点终站”原创,转载请保留文章出处。

