什么是 RegExp?
RegExp 是正则表达式的缩写。
当您检索某个文本时,能够运用一种形式来形貌要检索的内容。RegExp 就是这类形式。
简朴的形式能够是一个零丁的字符。
更庞杂的形式包括了更多的字符,并可用于剖析、花样搜检、替代等等。
您能够划定字符串中的检索位置,以及要检索的字符范例,等等。
定义 RegExp
const pattern = new RegExp('str');
RegExp 对象的要领
- test()
- exec()
- compile()
test() 要领检索字符串中的指定值。返回值是 true 或 false。
const pattern = new RegExp('str');
console.log(pattern.test('input string')); // true
exec() 要领检索字符串中的指定值。返回值是被找到的值。假如没有发明婚配,则返回 null。
const pattern = new RegExp('str');
console.log(pattern.test('input string')); // [ 'str', index: 6, input: 'input string', groups: undefined ]
compile() 要领用于转变 RegExp(既能够转变检索形式,也能够增加或删除第二个参数)。
const pattern = new RegExp('e');
console.log(pattern.test('The best things in life are free'));
pattern.compile('d');
console.log(pattern.test('The best things in life are free'));
支撑正则表达式的 String 对象的要领
- search()
- match()
- replace()
- split()
search()要领检索与正则表达式相婚配的子字符串。search() 要领不实行全局婚配,它将疏忽标志 g。它同时疏忽 regexp 的 lastIndex 属性,而且老是从字符串的最先举行检索,这意味着它老是返回 stringObject 的第一个婚配的位置。
// stringObject.search(regexp) 语法 (婚配不上时返回 -1)
const stringObj = 'Hello world';
const result = stringObj.search(/l{3}/);
console.log(result); // -1
match() 要领可在字符串内检索指定的值,或找到一个或多个正则表达式的婚配。该要领相似 indexOf() 和 lastIndexOf(),然则它返回指定的值,而不是字符串的位置。
// stringObject.match(regexp) 语法 (婚配不上时返回 null)
const stringObj = 'Hello world';
const result = stringObj.match(/l{2}/);
console.log(result); // [ 'll', index: 2, input: 'Hello world', groups: undefined ]
replace() 要领用于在字符串顶用一些字符替代另一些字符,或替代一个与正则表达式婚配的子串。
字符串 stringObject 的 replace() 要领实行的是查找并替代的操纵。它将在 stringObject 中查找与 regexp 相婚配的子字符串,然后用 replacement 来替代这些子串。假如 regexp 具有全局标志 g,那末 replace() 要领将替代一切婚配的子串。不然,它只替代第一个婚配子串。
// stringObject.replace(regexp/substr,replacement) 语法 (婚配不上时返回原字符串)
const stringObj = 'Hello world';
const result = stringObj.replace(/l{2}/,'ii');
console.log(result); // Heiio world
split() 要领用于把一个字符串分割成字符串数组。
返回一个字符串数组。该数组是经由过程在 separator 指定的边境处将字符串 stringObject 分割成子串建立的。返回的数组中的字串不包括 separator 本身。
然则,假如 separator 是包括子表达式的正则表达式,那末返回的数组中包括与这些子表达式婚配的字串(但不包括与全部正则表达式婚配的文本)。
// stringObject.split(separator,howmany) 语法 (婚配不上时返回 [stringObject])
const stringObj = 'Hello world';
const result = stringObj.split(/l{2}/);
console.log(result) // [ 'He', 'o world' ]
RegExp 参数
- 直接量语法
/pattern/attributes
- 建立 RegExp 对象的语法
new RegExp(pattern, attributes);
参数 pattern 是一个字符串,指定了正则表达式的形式或其他正则表达式。
参数 attributes 是一个可选的字符串,包括属性 “g”、”i” 和 “m”,离别用于指定全局婚配、辨别大小写的婚配和多行婚配。ECMAScript 标准化之前,不支撑 m 属性。假如 pattern 是正则表达式,而不是字符串,则必需省略该参数。
注重
const reg = /str/;
const newReg = reg.compile(reg, 'i'); // 报错
console.log(newReg.test('string'))
// 准确示例
const reg = /str/;
const newReg = new RegExp(reg, 'i');
console.log(newReg.test('string'));
附表
- 修饰符
修饰符 | 形貌 |
---|---|
i | 实行对大小写不敏感的婚配。 |
g | 实行全局婚配 |
m | 实行多行婚配 |
- 方括号
表达式 | 形貌 |
---|---|
[abc] | 查找方括号之间的任何字符 |
1 | 查找任何不在方括号之间的任何字符 |
[0-9] | 查找任何从0至9的数字 |
[a-z] | 查找任何从小写a至小写z的字符 |
[A-Z] | 查找任何从大写A至大写Z的字符 |
[A-z] | 查找任何从大写A至小写z的字符 |
[adgk] | 查找给定鸠合内的任何字符 |
[^adgk] | 查找给定鸠合外的任何字符 |
(red ¦ blue ¦green) | 查找任何指定的选项 |
- 元字符
元字符 | 形貌 |
---|---|
. | 查找单个字符,除了换行和行结束符。 |
w | 查找单词字符。 |
W | 查找非单词字符。 |
d | 查找数字字符。 |
D | 查找非数字字符。 |
s | 查找空缺字符。 |
S | 查找非空缺字符。 |
b | 婚配单词边境。 |
B | 婚配非单词边境。 |
0 | 查找 NUL 字符。 |
n | 查找换行符。 |
f | 查找换页符。 |
r | 查找回车符。 |
t | 查找制表符。 |
v | 查找垂直制表符。 |
xxx | 查找以八进制数 xxx 划定的字符。 |
xdd | 查找以十六进制数 dd 划定的字符。 |
uxxxx | 查找以十六进制数 xxxx 划定的 Unicode 字符。 |
- 量词
元字符 | 形貌 |
---|---|
n+ | 婚配任何包括最少一个 n 的字符串。 |
n* | 婚配任何包括零个或多个 n 的字符串。 |
n? | 婚配任何包括零个或一个 n 的字符串。 |
n{X} | 婚配包括 X 个 n 的序列的字符串。 |
n{X,Y} | 婚配包括 X 至 Y 个 n 的序列的字符串。 |
n{X,} | 婚配包括最少 X 个 n 的序列的字符串。 |
n$ | 婚配任何末端为 n 的字符串。 |
^n | 婚配任何开首为 n 的字符串。 |
?=n | 婚配任何厥后紧接指定字符串 n 的字符串。 |
?!n | 婚配任何厥后没有紧接指定字符串 n 的字符串。 |
- abc ↩