返回到:JavaScript对象:JavaScript RegExp 对象
定义和用法
exec() 方法用于检索字符串中的正则表达式的匹配。
如果字符串中有匹配的值返回该匹配值,否则返回 null。
语法
RegExpObject.exec(string)
参数 | 描述 |
---|---|
string | Required. The string to be searched |
所有主要浏览器都支持 exec() 方法
实例
在字符串中全局搜索 “Hello” 和 “Web176” 字符串:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Web176教程(Web176.com)</title> </head> <body> <script> var str="Hello world!"; //查找"Hello" var patt=/Hello/g; var result=patt.exec(str); document.write("返回值: " + result); //查找 "RUNOOB" patt=/Web176/g; result=patt.exec(str); document.write("<br>返回值: " + result); </script> </body> </html>
作者:terry,如若转载,请注明出处:https://www.web176.com/javascriptbook/jsarrtips/2918.html