使用字符串搜索"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()
方法返回无效的如果没有找到匹配项。
string.match(
match)
Parameter | Description |
match | Required. The search value. A regular expression (or a string that will be converted to a regular expression). |
类型 | 描述 |
数组 或者 null |
包含匹配项的数组。null 如果没有找到匹配项。 |
这个match()
方法返回一个匹配数组。
这个search()
方法返回第一个匹配的位置。
在 JavaScript 中,可以使用不同的方法来完成正则表达式文本搜索。
与一个图案作为正则表达式,以下是最常见的方法:
示例 | 描述 |
---|---|
文本.匹配(图案) | 字符串方法 match() |
文本.搜索(图案) | 字符串方法 search() |
图案.exec(文本) | RexExp 方法 exec() |
图案.测试(文本) | RegExp 方法 test() |
match()
是 ECMAScript1 (ES1) 功能。
所有浏览器均完全支持 ES1 (JavaScript 1997):
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!