JavaScript RegExp Group [abc]
定义和用法
括号 [abc] 规定括号内的字符的匹配项。
方括号可以定义单个字符、组或字符跨度:
[abc] | 任意字符 a、b 或 c。 |
[A-Z] | 从大写 A 到大写 Z 的任意字符。 |
[a-z] | 从小写 a 到小写 z 的任意字符。 |
[A-z] | 从大写 A 到小写 z 的任意字符。 |
提示
请使用 [^abc] 表达式查找任何不在括号内的字符。
例子 1
对字符串中的字符 "i" 和 "s" 进行全局搜索:
let text = "Do you know if this is all there is?"; let pattern = /[is]/gi;
例子 2
全局搜索字符串中从小写 "a" 到小写 "h" 的字符:
let text = "Is this all there is?"; let pattern = /[a-h]/g;
例子 3
全局搜索从大写 "A" 到大写 "E" 的字符范围:
let text = "I SCREAM FOR ICE CREAM!"; let pattern = /[A-E]/g;
例子 4
全局搜索从大写 "A" 到小写 "e" 的字符(将搜索所有大写字母,但仅搜索从 a 到 e 的小写字母。)
let text = "I Scream For Ice Cream, is that OK?!"; let pattern = /[A-e]/g;
例子 5
对字符范围 [a-s] 进行全局、不区分大小写的搜索:
let text = "I Scream For Ice Cream, is that OK?!"; let pattern = /[a-s]/gi;
例子 6
对字符进行 "g" 和 "gi" 搜索:
let text = "THIS This this"; let result1 = text.match(/[THIS]/g); let result2 = text.match(/[THIS]/gi);
语法
new RegExp("[abc]")
或者简写:
/[abc]/
带修饰符的语法
new RegExp("[abc]", "g")
或者简写:
/[abc]/g
浏览器支持
/[abc]/
是 ECMAScript1 (ES1) 特性。
所有浏览器都完全支持 ES1 (JavaScript 1997):
Chrome | IE | Edge | Firefox | Safari | Opera |
---|---|---|---|---|---|
支持 | 支持 | 支持 | 支持 | 支持 | 支持 |
正则表达式搜索方法
在 JavaScript 中,正则表达式文本搜索可以用不同的方法完成。
使用模式(pattern)作为正则表达式,这些是最常用的方法:
举例 | 描述 |
---|---|
text.match(pattern) | 字符串方法 match() |
text.search(pattern) | 字符串方法 search() |
pattern.exec(text) | RexExp 方法 exec() |
pattern.test(text) | RexExp 方法 test() |