参考网页:
https://developer.mozilla.org/zhCN/docs/Web/JavaScript/Guide/Regular_Expressions
https://deerchao.net/tutorials/regex/regex.htm
例子:
http://ife.baidu.com/note/detail/id/188
https://stackoverflow.com/questions/19605150/regex-for-password-must-be-contain-at-least-eight-characters-at-least-one-numbe/21456918#21456918
位置匹配
\b 只匹配一个位置
\B 匹配不是单词开头或结束的位置
^ 匹配字符串的开始
$ 匹配字符串的结束
次数匹配
. 匹配除换行符以外的任意字符
? 重复零次或一次
*
重复零次或更多次
+ 重复一次或更多次
{n} 重复n次
{n,} 重复n次或更多次
{n,m} 重复n到m次
()
| 分枝条件,类似于或
字符匹配
\d 匹配数字
\D匹配任意不是字母,数字,下划线,汉字的字符
[^x]
[^aeiou] 匹配除了aeiou这几个字母以外的任意字符
\s 匹配任意的空白符
\S 匹配任意不是空白符的字符
\w 匹配字母或数字或下划线或汉字
\W 匹配任意不是字母,数字,下划线,汉字的字符
[] 匹配一个范围
[^x] 匹配除了x以外的任意字符
网友评论