JavaScript exec() 方法


JavaScript exec() 方法


定义和用法

exec() 方法用于检索字符串中的正则表达式的匹配。

如果字符串中有匹配的值返回该匹配值,否则返回 null。

语法

RegExpObject.exec( _string_ )
参数 描述
string Required. The string to be searched

浏览器支持

所有主要浏览器都支持 exec() 方法

实例

在字符串中全局搜索 "Hello" 和 "CodingDict" 字符串:

var str="Hello world!"; //查找"Hello" var patt=/Hello/g; var
result=patt.exec(str); document.write("返回值: " \+ result); //查找 "CodingDict"
patt=/CodingDict/g; result=patt.exec(str); document.write("<br>返回值: " \+ result);

以上实例输出结果:

Returned value: Hello  
Returned value: null

试一试 »