JavaScript 中的 exec() 方法搜索具有模式的字符串。如果未找到匹配项,则返回 NULL,否则返回您搜索的文本。
您可以尝试运行以下代码来了解如何使用JavaScript 正则表达式中的 exec() 方法 -
<html> <head> <title>JavaScript Regular Expressions</title> </head> <body> <script> var myStr = "Welcome to our website! Welcome to Tutorialspoint!"; var res = /t/.exec(myStr); document.write(res); </script> </body> </html>
以上是JavaScript RegExp中的exec方法的作用是什么?的详细内容。更多信息请关注PHP中文网其他相关文章!