Java的正则表达式讲解

Java的正则表达式讲解:(为了能看清,本文正则表达式用中文的句号代替英文句点)

[if !supportLists]1    [endif]英文句点符号:匹配单个任意字符。

eg:

表达式”t。o  可以匹配:tno,t#o,teo等等。不可以匹配:tnno,to,Tno,t正o等。

[if !supportLists]2    [endif]方括号:只有方括号里面指定的字符才参与匹配,也只能匹配单个字符。

eg:

表达式:t[abcd]n  只可以匹配:tan,tbn,tcn,tdn。不可以匹配:thn,tabn,tn等。

3  |符号。相当与“或”,可以匹配指定的字符,但是也只能选择其中一项进行匹配。

   eg:

   表达式:t(a|b|c|dd)n 只可以匹配:tan,tbn,tcn,tddn。不可以匹配taan,tn,tabcn

[if !supportLists]4    [endif]表示匹配次数的符号

[if !vml]

[endif]

          {n, }表示至少N次。

eg:

表达式:[0—9]{ 3 }  \—[0-9]{ 2 } \—[0-9]{ 3 } 的匹配格式为:999—99—999

因为“—”符号在正则表达式中有特殊的含义,它表示一个范围,所以在前面加转义字符“\”。

[if !supportLists]5    [endif]^符号:表示否

^符号被称为“否”符号,如果用在方括号内,“^“表示不想匹配的字符。

eg:

表达式:[^x] 第一个字符不能是x

6:圆括号,和空白符号

“\s”是空白符号,只可以匹配一个空格、制表符、回车符、换页符,不可以匹配自己输入的多个空格。

    ()是分组号,可以用ORO API提取处出值,后面将详细讨论。

7:正则表达式的一些快捷符号:

    \d表示[0—9],  \D表示[^0—9],  \w表示[0—9A—Z_a—z],

\W表示[^0—9A—Z_a—z],  \s表示[\t\n\r\f],  \S表示[^\t\n\r\f]

8  一些常用的正则表达式:

Java:(([a-z]|_)(\\w*)){6,20}匹配以字母或下划线开头,字母数字下划线结尾的字符串

JavaScript:/^(\-?)(\d+)$/匹配数字。/^\w+$/匹配字母数字下划线。

.+ 一个或多个字符

/0 第一次匹配的字符串

[if !supportLists]9    [endif]java类中使用正则表达式:

eg1:

Pattern p = Pattern.compile("t.n");

Matcher m =p.matcher(“ton”);

if(m.matches()){

    return true;

}

eg2:booleanbool=Pattern.matches (“t.n”,”ton”);

如果一个正则表达式要重复利用,用第一种,如果只匹配一次,第二种是最佳选择。

[if !supportLists]10 [endif]反斜线字符(‘\’)用于转义字符,同时还可以引用非转义字符(不包括非转义字母)

因此‘\\’表示‘\’,‘\{’表示{。  但是‘\y’就是错的,因为在不表示转义构造的 任何字母字符前 使用反斜线都是错误的。

根据 Java Language Specification的要求,Java 源代码的字符串中的反斜线被解释为 Unicode 转义或其他字符转义。因此必须在字符串字面值中使用两个反斜线,表示正则表达式受到保护,不被Java 字节码编译器解释。例如,当解释为正则表达式时,字符串字面值 "\b" 与单个退格字符匹配,而 "\\b" 与单词边界匹配。字符串字面值 "\(hello\)" 是非法的,将导致编译时错误;要与字符串(hello) 匹配,必须使用字符串字面值 "\\(hello\\)"。 注意:‘\b’是一个字符而‘\\b’是两个字符

[if !supportLists]11 [endif]Pattern类

[if !supportLists](1)       [endif]8种模式:比如启用多行模式,启用unix模式等,eg  int CASE_INSENSITIVE表示启用不区分大小写的模式。

[if !supportLists](2)       [endif]4个静态方法

两个单例模式构造器:

Pattern compile(String regex);

Pattern compile(String regex,int flags)flags为八种模式的一种

eg2:

Patternp=Pattern.compile("[a-z]\\s[a-z]");

Matcher m=p.matcher("b    c");

if(m.matches())    Sysout(1111);

else  Sysout(2222);  输出结果为1111;

一个匹配方法,一个返回String的字面值模式方法:

boolean matches(String

regex,CharSequence input);//input与regex匹

配返回true。

String quote(String s);//返回指定String的字面值。

eg3:boolean bool=Pattern.matches("[a-z] [a-z]",”b c”); //结果为true

Sysout(Pattern.quote(“a_#/tb”)); //输出结果为“\Qa_# b”\E

[if !supportLists](3)       [endif]6个普通方法

返回此模式的匹配器:Matcher matcher(CharSequence input);

返回此模式的标志:   int flags();

返回此模式的regex:  String pattern();

两个字符串切割方法:String[] split(CharSequence input);

             String[]split(CharSequence input,int limit);

             limit为返回字符串的个数,如果等于0,返回所有          拆分的字符串,如果大于拆分字符串的实际个数,

             返回实际个数。

toString方法:         String toString();

      eg4:

        Patternp=Pattern.compile("[,;\\s]");

        String str="wo,ai;nihaha";

        String[] strs=p.split(str);

        for(String s : strs){

            Sysout(s);//输出“wo” “ai” “ni” “haha”

        }

        strs=p.split(str,2)

        for(String s : strs){

            Sysout(s);//输出“wo” “ai;ni haha”

        }

        Strs=p.split(str,0)

        for(String s : strs){

            Sysout(s);//输出“wo” “ai” “ni” “haha”

        }


[if !supportLists]12 [endif]常用正则表达式

[if !supportLists](1)       [endif]"^\d+$"  //非负整数(正整数 + 0)

[if !supportLists](2)       [endif]"^[0-9]*[1-9][0-9]*$"  //正整数

[if !supportLists](3)       [endif]"^((-\d+)|(0+))$"  //非正整数(负整数 + 0)

[if !supportLists](4)       [endif]"^-[0-9]*[1-9][0-9]*$"  //负整数

[if !supportLists](5)       [endif]"^-?\d+$"    //整数

[if !supportLists](6)       [endif]"^\d+(\.\d+)?$"  //非负浮点数(正浮点数 + 0)

[if !supportLists](7)       [endif]"^(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*))$"  //正浮点数

[if !supportLists](8)       [endif]"^((-\d+(\.\d+)?)|(0+(\.0+)?))$"  //非正浮点数(负浮点数 + 0)

[if !supportLists](9)       [endif]"^(-(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*)))$"  //负浮点数

[if !supportLists](10)    [endif]"^(-?\d+)(\.\d+)?$"  //浮点数

[if !supportLists](11)    [endif]"^[A-Za-z]+$"  //由26个英文字母组成的字符串

[if !supportLists](12)    [endif]"^[A-Z]+$"  //由26个英文字母的大写组成的字符串

[if !supportLists](13)    [endif]"^[a-z]+$"  //由26个英文字母的小写组成的字符串

[if !supportLists](14)    [endif]"^[A-Za-z0-9]+$"  //由数字和26个英文字母组成的字符串

[if !supportLists](15)    [endif]"^\w+$"  //由数字、26个英文字母或者下划线组成的字符串

[if !supportLists](16)    [endif]"^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$"    //email地址

[if !supportLists](17)    [endif]"^[a-zA-z]+://(\w+(-\w+)*)(\.(\w+(-\w+)*))*(\?\S*)?$"  //url

[if !supportLists](18)    [endif]/^(d{2}|d{4})-((0([1-9]{1}))|(1[1|2]))-(([0-2]([1-9]{1}))|(3[0|1]))$/   //  年-月-日

[if !supportLists](19)    [endif]/^((0([1-9]{1}))|(1[1|2]))/(([0-2]([1-9]{1}))|(3[0|1]))/(d{2}|d{4})$/   //月/日/年

[if !supportLists](20)    [endif]"^([w-.]+)@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.)|(([w-]+.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(]?)$"   //Emil

[if !supportLists](21)    [endif]/^((\+?[0-9]{2,4}\-[0-9]{3,4}\-)|([0-9]{3,4}\-))?([0-9]{7,8})(\-[0-9]+)?$/     //电话号码

[if !supportLists](22)    [endif]"^(d{1,2}|1dd|2[0-4]d|25[0-5]).(d{1,2}|1dd|2[0-4]d|25[0-5]).(d{1,2}|1dd|2[0-4]d|25[0-5]).(d{1,2}|1dd|2[0-4]d|25[0-5])$"   //IP地址

[if !supportLists](23)    [endif] 

[if !supportLists](24)    [endif]匹配中文字符的正则表达式:[\u4e00-\u9fa5]

[if !supportLists](25)    [endif]匹配双字节字符(包括汉字在内):[^\x00-\xff]

[if !supportLists](26)    [endif]匹配空行的正则表达式:\n[\s| ]*\r

[if !supportLists](27)    [endif]匹配HTML标记的正则表达式:/<(.*)>.*<\/\1>|<(.*)\/>/

[if !supportLists](28)    [endif]匹配首尾空格的正则表达式:(^\s*)|(\s*$)

[if !supportLists](29)    [endif]匹配Email地址的正则表达式:\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*

[if !supportLists](30)    [endif]匹配网址URL的正则表达式:^[a-zA-z]+://(\\w+(-\\w+)*)(\\.(\\w+(-\\w+)*))*(\\?\\S*)?$

[if !supportLists](31)    [endif]匹配帐号是否合法(字母开头,允许5-16字节,允许字母数字下划线):^[a-zA-Z][a-zA-Z0-9_]{4,15}$

[if !supportLists](32)    [endif]匹配国内电话号码:(\d{3}-|\d{4}-)?(\d{8}|\d{7})?

[if !supportLists](33)    [endif]匹配腾讯QQ号:^[1-9]*[1-9][0-9]*$

[if !supportLists](34)    [endif]元字符及其在正则表达式上下文中的行为:

[if !supportLists](35)    [endif]\ 将下一个字符标记为一个特殊字符、或一个原义字符、或一个后向引用、或一个八进制转义符。

[if !supportLists](36)    [endif]^ 匹配输入字符串的开始位置。如果设置了 RegExp 对象的Multiline 属性,^ 也匹配 ’\n’ 或 ’\r’ 之后的位置。

[if !supportLists](37)    [endif]$ 匹配输入字符串的结束位置。如果设置了 RegExp 对象的Multiline 属性,$ 也匹配 ’\n’ 或 ’\r’ 之前的位置。

[if !supportLists](38)    [endif]* 匹配前面的子表达式零次或多次。

[if !supportLists](39)    [endif]+ 匹配前面的子表达式一次或多次。+ 等价于 {1,}。

[if !supportLists](40)    [endif]? 匹配前面的子表达式零次或一次。? 等价于 {0,1}。

[if !supportLists](41)    [endif]{n} n 是一个非负整数,匹配确定的n 次。

[if !supportLists](42)    [endif]{n,} n 是一个非负整数,至少匹配n 次。

[if !supportLists](43)    [endif]{n,m} m 和 n 均为非负整数,其中n <= m。最少匹配 n 次且最多匹配 m 次。在逗号和两个数之间不能有空格。

[if !supportLists](44)    [endif]? 当该字符紧跟在任何一个其他限制符 (*, +, ?, {n}, {n,}, {n,m}) 后面时,匹配模式是非贪婪的。非贪婪模式尽可能少的匹配所搜索的字符串,而默认的贪婪模式则尽可能多的匹配所搜索的字符串。

[if !supportLists](45)    [endif]. 匹配除 "\n" 之外的任何单个字符。要匹配包括 ’\n’ 在内的任何字符,请使用象 ’[.\n]’ 的模式。

[if !supportLists](46)    [endif](pattern) 匹配pattern 并获取这一匹配。

[if !supportLists](47)    [endif](?:pattern) 匹配pattern 但不获取匹配结果,也就是说这是一个非获取匹配,不进行存储供以后使用。

[if !supportLists](48)    [endif](?=pattern) 正向预查,在任何匹配 pattern 的字符串开始处匹配查找字符串。这是一个非获取匹配,也就是说,该匹配不需要获取供以后使用。

[if !supportLists](49)    [endif](?!pattern) 负向预查,与(?=pattern)作用相反

[if !supportLists](50)    [endif]x|y 匹配 x 或 y。

[if !supportLists](51)    [endif][xyz] 字符集合。

[if !supportLists](52)    [endif][^xyz] 负值字符集合。

[if !supportLists](53)    [endif][a-z] 字符范围,匹配指定范围内的任意字符。

[if !supportLists](54)    [endif][^a-z] 负值字符范围,匹配任何不在指定范围内的任意字符。

[if !supportLists](55)    [endif]\b 匹配一个单词边界,也就是指单词和空格间的位置。

[if !supportLists](56)    [endif]\B 匹配非单词边界。

[if !supportLists](57)    [endif]\cx 匹配由x指明的控制字符。

[if !supportLists](58)    [endif]\d 匹配一个数字字符。等价于 [0-9]。

[if !supportLists](59)    [endif]\D 匹配一个非数字字符。等价于 [^0-9]。

[if !supportLists](60)    [endif]\f 匹配一个换页符。等价于 \x0c 和 \cL。

[if !supportLists](61)    [endif]\n 匹配一个换行符。等价于 \x0a 和 \cJ。

[if !supportLists](62)    [endif]\r 匹配一个回车符。等价于 \x0d 和 \cM。

[if !supportLists](63)    [endif]\s 匹配任何空白字符,包括空格、制表符、换页符等等。等价于[ \f\n\r\t\v]。

[if !supportLists](64)    [endif]\S 匹配任何非空白字符。等价于 [^ \f\n\r\t\v]。

[if !supportLists](65)    [endif]\t 匹配一个制表符。等价于 \x09 和 \cI。

[if !supportLists](66)    [endif]\v 匹配一个垂直制表符。等价于 \x0b 和 \cK。

[if !supportLists](67)    [endif]\w 匹配包括下划线的任何单词字符。等价于’[A-Za-z0-9_]’。

[if !supportLists](68)    [endif]\W 匹配任何非单词字符。等价于 ’[^A-Za-z0-9_]’。

[if !supportLists](69)    [endif]\xn 匹配 n,其中 n 为十六进制转义值。十六进制转义值必须为确定的两个数字长。

[if !supportLists](70)    [endif]\num 匹配 num,其中num是一个正整数。对所获取的匹配的引用。

[if !supportLists](71)    [endif]\n 标识一个八进制转义值或一个后向引用。如果 \n 之前至少 n 个获取的子表达式,则 n 为后向引用。否则,如果 n 为八进制数字 (0-7),则 n 为一个八进制转义值。

[if !supportLists](72)    [endif]\nm 标识一个八进制转义值或一个后向引用。如果 \nm 之前至少有is preceded by at least nm 个获取得子表达式,则 nm 为后向引用。如果 \nm 之前至少有 n 个获取,则 n 为一个后跟文字 m 的后向引用。如果前面的条件都不满足,若 n 和 m 均为八进制数字 (0-7),则 \nm 将匹配八进制转义值 nm。

[if !supportLists](73)    [endif]\nml 如果 n 为八进制数字 (0-3),且 m 和 l 均为八进制数字 (0-7),则匹配八进制转义值 nml。

[if !supportLists](74)    [endif]\un 匹配 n,其中 n 是一个用四个十六进制数字表示的Unicode字符。

[if !supportLists](75)    [endif]匹配中文字符的正则表达式:[u4e00-u9fa5]

[if !supportLists](76)    [endif]匹配双字节字符(包括汉字在内):[^x00-xff]

[if !supportLists](77)    [endif]匹配空行的正则表达式:n[s| ]*r

[if !supportLists](78)    [endif]匹配HTML标记的正则表达式:/<(.*)>.*|<(.*)/>/

[if !supportLists](79)    [endif]匹配首尾空格的正则表达式:(^s*)|(s*$)

[if !supportLists](80)    [endif]匹配Email地址的正则表达式:w+([-+.]w+)*@w+([-.]w+)*.w+([-.]w+)*

[if !supportLists](81)    [endif]匹配网址URL的正则表达式:http://([w-]+.)+[w-]+(/[w-./?%&=]*)?

[if !supportLists](82)    [endif]利用正则表达式限制网页表单里的文本框输入内容:

[if !supportLists](83)    [endif]用正则表达式限制只能输入中文:onkeyup="value=value.replace(/[^u4E00-u9FA5]/g,'')"onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^u4E00-u9FA5]/g,''))"

[if !supportLists](84)    [endif]用正则表达式限制只能输入全角字符:onkeyup="value=value.replace(/[^uFF00-uFFFF]/g,'')"onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^uFF00-uFFFF]/g,''))"

[if !supportLists](85)    [endif]用正则表达式限制只能输入数字:onkeyup="value=value.replace(/[^d]/g,'')"onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^d]/g,''))"

[if !supportLists](86)    [endif]用正则表达式限制只能输入数字和英文:onkeyup="value=value.replace(/[W]/g,'')"onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^d]/g,''))"

[if !supportLists](87)    [endif] 

[if !supportLists](88)    [endif] 

[if !supportLists](89)    [endif]整理:

[if !supportLists](90)    [endif] 

[if !supportLists](91)    [endif]匹配中文字符的正则表达式:[\u4e00-\u9fa5]

[if !supportLists](92)    [endif]匹配双字节字符(包括汉字在内):[^\x00-\xff]

[if !supportLists](93)    [endif]匹配空行的正则表达式:\n[\s| ]*\r

[if !supportLists](94)    [endif]匹配HTML标记的正则表达式:/<(.*)>.*<\/\1>|<(.*)\/>/

[if !supportLists](95)    [endif]匹配首尾空格的正则表达式:(^\s*)|(\s*$)

[if !supportLists](96)    [endif]匹配IP地址的正则表达式:/(\d+)\.(\d+)\.(\d+)\.(\d+)/g//

[if !supportLists](97)    [endif]匹配Email地址的正则表达式:\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*

[if !supportLists](98)    [endif]匹配网址URL的正则表达式:http://(/[\w-]+\.)+[\w-]+(/[\w-./?%&=]*)?

[if !supportLists](99)    [endif]sql语句:^(select|drop|delete|create|update|insert).*$

[if !supportLists](100)        [endif]1、非负整数:^\d+$

[if !supportLists](101)        [endif]2、正整数:^[0-9]*[1-9][0-9]*$

[if !supportLists](102)        [endif]3、非正整数:^((-\d+)|(0+))$

[if !supportLists](103)        [endif]4、负整数:^-[0-9]*[1-9][0-9]*$

[if !supportLists](104)        [endif] 

[if !supportLists](105)        [endif]5、整数:^-?\d+$

[if !supportLists](106)        [endif] 

[if !supportLists](107)        [endif]6、非负浮点数:^\d+(\.\d+)?$

[if !supportLists](108)        [endif] 

[if !supportLists](109)        [endif]7、正浮点数:^((0-9)+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*))$

[if !supportLists](110)        [endif] 

[if !supportLists](111)        [endif]8、非正浮点数:^((-\d+\.\d+)?)|(0+(\.0+)?))$

[if !supportLists](112)        [endif] 

[if !supportLists](113)        [endif]9、负浮点数:^(-((正浮点数正则式)))$

[if !supportLists](114)        [endif] 

[if !supportLists](115)        [endif]10、英文字符串:^[A-Za-z]+$

[if !supportLists](116)        [endif] 

[if !supportLists](117)        [endif]11、英文大写串:^[A-Z]+$

[if !supportLists](118)        [endif] 

[if !supportLists](119)        [endif]12、英文小写串:^[a-z]+$

[if !supportLists](120)        [endif] 

[if !supportLists](121)        [endif]13、英文字符数字串:^[A-Za-z0-9]+$

[if !supportLists](122)        [endif] 

[if !supportLists](123)        [endif]14、英数字加下划线串:^\w+$

[if !supportLists](124)        [endif] 

[if !supportLists](125)        [endif]15、E-mail地址:^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$

[if !supportLists](126)        [endif] 

[if !supportLists](127)        [endif]16、URL:^[a-zA-Z]+://(\w+(-\w+)*)(\.(\w+(-\w+)*))*(\?\s*)?$

[if !supportLists](128)        [endif]或:^http:\/\/[A-Za-z0-9]+\.[A-Za-z0-9]+[\/=\?%\-&_~`@[\]\':+!]*([^<>\"\"])*$

[if !supportLists](129)        [endif] 

[if !supportLists](130)        [endif]17、邮政编码:^[1-9]\d{5}$

[if !supportLists](131)        [endif] 

[if !supportLists](132)        [endif]18、中文:^[\u0391-\uFFE5]+$

[if !supportLists](133)        [endif] 

[if !supportLists](134)        [endif]19、电话号码:^((\(\d{2,3}\))|(\d{3}\-))?(\(0\d{2,3}\)|0\d{2,3}-)?[1-9]\d{6,7}(\-\d{1,4})?$

[if !supportLists](135)        [endif] 

[if !supportLists](136)        [endif]20、手机号码:^((\(\d{2,3}\))|(\d{3}\-))?13\d{9}$

[if !supportLists](137)        [endif] 

[if !supportLists](138)        [endif]21、双字节字符(包括汉字在内):^\x00-\xff

[if !supportLists](139)        [endif] 

[if !supportLists](140)        [endif]22、匹配首尾空格:(^\s*)|(\s*$)(像vbscript那样的trim函数)

[if !supportLists](141)        [endif] 

[if !supportLists](142)        [endif]23、匹配HTML标记:<(.*)>.*<\/\1>|<(.*) \/>

[if !supportLists](143)        [endif] 

[if !supportLists](144)        [endif]24、匹配空行:\n[\s| ]*\r

[if !supportLists](145)        [endif] 

[if !supportLists](146)        [endif]25、提取信息中的网络链接:(h|H)(r|R)(e|E)(f|F) *=*('|")?(\w|\\|\/|\.)+('|"| *|>)?

[if !supportLists](147)        [endif] 

[if !supportLists](148)        [endif]26、提取信息中的邮件地址:\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*

[if !supportLists](149)        [endif] 

[if !supportLists](150)        [endif]27、提取信息中的图片链接:(s|S)(r|R)(c|C) *=*('|")?(\w|\\|\/|\.)+('|"| *|>)?

[if !supportLists](151)        [endif] 

[if !supportLists](152)        [endif]28、提取信息中的IP地址:(\d+)\.(\d+)\.(\d+)\.(\d+)

[if !supportLists](153)        [endif] 

[if !supportLists](154)        [endif]29、提取信息中的中国手机号码:(86)*0*13\d{9}

[if !supportLists](155)        [endif] 

[if !supportLists](156)        [endif]30、提取信息中的中国固定电话号码:(\(\d{3,4}\)|\d{3,4}-|\s)?\d{8}

[if !supportLists](157)        [endif] 

[if !supportLists](158)        [endif]31、提取信息中的中国电话号码(包括移动和固定电话):(\(\d{3,4}\)|\d{3,4}-|\s)?\d{7,14}

[if !supportLists](159)        [endif] 

[if !supportLists](160)        [endif]32、提取信息中的中国邮政编码:[1-9]{1}(\d+){5}

[if !supportLists](161)        [endif] 

[if !supportLists](162)        [endif]33、提取信息中的浮点数(即小数):(-?\d*)\.?\d+

[if !supportLists](163)        [endif] 

[if !supportLists](164)        [endif]34、提取信息中的任何数字 :(-?\d*)(\.\d+)?

[if !supportLists](165)        [endif] 

[if !supportLists](166)        [endif]35、IP:(\d+)\.(\d+)\.(\d+)\.(\d+)

[if !supportLists](167)        [endif] 

[if !supportLists](168)        [endif]36、电话区号:/^0\d{2,3}$/

[if !supportLists](169)        [endif] 

[if !supportLists](170)        [endif]37、腾讯QQ号:^[1-9]*[1-9][0-9]*$

[if !supportLists](171)        [endif] 

[if !supportLists](172)        [endif]38、帐号(字母开头,允许5-16字节,允许字母数字下划线):^[a-zA-Z][a-zA-Z0-9_]{4,15}$

[if !supportLists](173)        [endif] 

[if !supportLists](174)        [endif]39、中文、英文、数字及下划线:^[\u4e00-\u9fa5_a-zA-Z0-9]+$

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,968评论 6 482
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,601评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,220评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,416评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,425评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,144评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,432评论 3 401
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,088评论 0 261
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,586评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,028评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,137评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,783评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,343评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,333评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,559评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,595评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,901评论 2 345

推荐阅读更多精彩内容

  • 搞懂Python 正则表达式用法 Python 正则表达式 正则表达式是一个特殊的字符序列,它能帮助你方便的检查一...
    厦热阅读 1,568评论 0 2
  • Lua 5.1 参考手册 by Roberto Ierusalimschy, Luiz Henrique de F...
    苏黎九歌阅读 13,744评论 0 38
  • 忘了从哪收集的资料了,放这儿,以备不时之需。 只能输入数字:"^[0-9]*$"。 只能输入n位的数字:"^\d{...
    study_monkey阅读 1,390评论 0 7
  • 正则表达式到底是什么东西?字符是计算机软件处理文字时最基本的单位,可能是字母,数字,标点符号,空格,换行符,汉字等...
    狮子挽歌阅读 2,136评论 0 9
  • Java的正则表达式讲解:(为了能看清,本文正则表达式用中文的句号代替英文句点) 英文句点符号:匹配单个任意字符。...
    红姑娘阅读 4,321评论 0 2