直接量语法
/pattern/attributes
创建 RegExp 对象的语法:
new RegExp(pattern, attributes);
一、attributes
修饰符 |
描述 |
例子 |
执行对大小写不敏感的匹配。 |
var str="Visit W3School"; Visit W3School |
|
执行全局匹配(查找所有匹配而非在找到第一个匹配后停止)。若不含g,则默认找到第一个匹配后停止 |
var str="Is this all there is?"; Is this all there is? |
|
m |
执行多行匹配。 |
|
二、pattern
1. 方括号:查找某个范围的字符
表达式 |
描述 |
例子 |
查找方括号之间的任何字符。方括号内是"或"的关系 |
var str="Is this all there is?"; Is this all there is? |
|
查找任何不在方括号之间的字符。 |
var str="Is this all there is?"; Is this all there is? |
|
[0-9] |
查找任何从 0 至 9 的数字。 |
|
[a-z] |
查找任何从小写 a 到小写 z 的字符。 |
|
[A-Z] |
查找任何从大写 A 到大写 Z 的字符。 |
|
[A-z] |
查找任何从大写 A 到小写 z 的字符。 |
|
[adgk] |
查找给定集合内的任何字符。 |
|
[^adgk] |
查找给定集合外的任何字符。 |
|
(red|blue|green) |
查找任何指定的选项。 |
|
2. 元字符:拥有特殊含义的字符
元字符 |
描述 |
例子 |
查找单个字符,除了换行和行结束符。 |
var str="That's hot!"; That's hot! |
|
查找单词字符。(单词字符包括:a-z、A-Z、0-9,以及下划线。) |
var str="Give 100%!"; Give 100%! |
|
查找非单词字符。 |
var str="Give 100%!"; Give 100%! |
|
查找数字。 |
var str="Give 100%!"; Give 100%! |
|
查找非数字字符。 |
var str="Give 100%!"; Give 100%! |
|
查找空白字符。 |
var str="Is this all there is?"; Is this all there is? |
|
查找非空白字符。 |
var str="Is this all there is?"; Is this all there is? |
|
匹配单词边界。 |
var str="Visit W3School"; Visit W3School |
|
匹配非单词边界。 |
var str="Visit W3School"; |
|
|