JavaScript RegExp exec()
描述
exec() 方法在字符串中测试匹配项。
如果找到匹配项,它将返回结果数组,否则它将返回 null。
浏览器支持
exec()
是 ECMAScript1 (ES1) 功能。
ES1 (JavaScript 1997) 在所有浏览器中完全受支持
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 是 |
语法
RegExpObject.exec(string)
参数值
参数 | 描述 |
---|---|
string | 必需。要搜索的字符串 |
返回值
类型 | 描述 |
---|---|
数组 | 如果找到匹配项,则包含匹配文本的数组,否则返回 null |
更多示例
示例
在字符串中全局搜索“Hello”和“W3Schools”
let text = "Hello world!";
// 查找“Hello”
let result1 = /Hello/.exec(text);
// 查找“W3Schools”
let result2 = /W3Schools/.exec(text);
自己尝试 »
正则表达式搜索方法
在 JavaScript 中,可以使用不同的方法进行正则表达式文本搜索。
使用模式作为正则表达式,以下是最常用的方法
示例 | 描述 |
---|---|
text.match(pattern) | String 方法 match() |
text.search(pattern) | String 方法 search() |
pattern.exec(text) | RexExp 方法 exec() |
pattern.test(text) | RegExp 方法 test() |