JavaScript 字符串 match() 方法
示例
使用字符串搜索 "ain"
let text = "The rain in SPAIN stays mainly in the plain";
text.match("ain");
亲自试一试 »
使用正则表达式搜索 "ain"
let text = "The rain in SPAIN stays mainly in the plain";
text.match(/ain/);
亲自试一试 »
全局搜索 "ain"
let text = "The rain in SPAIN stays mainly in the plain";
text.match(/ain/g);
亲自试一试 »
全局且不区分大小写的搜索
let text = "The rain in SPAIN stays mainly in the plain";
text.match(/ain/gi);
亲自试一试 »
描述
match()
方法将字符串与正则表达式匹配 **
match()
方法返回一个包含匹配项的数组。
match()
方法如果未找到匹配项则返回 null。
语法
string.match(match)
参数
参数 | 描述 |
match | 必需。 搜索值。 一个正则表达式(或将转换为正则表达式的字符串)。 |
返回值
类型 | 描述 |
数组 或 null | 包含匹配项的数组。null 如果未找到匹配项。 |
之间的区别
字符串 match() 和字符串 search() 方法
match()
方法返回一个包含匹配项的数组。
search()
方法返回第一个匹配项的位置。
正则表达式搜索方法
在 JavaScript 中,可以使用不同的方法进行正则表达式文本搜索。
使用模式作为正则表达式,以下是最常见的方法
示例 | 描述 |
---|---|
text.match(pattern) | 字符串方法 match() |
text.search(pattern) | 字符串方法 search() |
pattern.exec(text) | RegExp 方法 exec() |
pattern.test(text) | RegExp 方法 test() |
浏览器支持
match()
是 ECMAScript1 (ES1) 特性。
ES1 (JavaScript 1997) 在所有浏览器中都得到完全支持
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 是 |