欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在JavaScript的正则表达式中使用exec()方法

程序员文章站 2022-10-13 09:40:42
 exec方法为正则表达式匹配的文本搜索字符串。如果找到匹配,则返回结果数组; 否则,返回null。 语法 regexpobject.exec( st...

 exec方法为正则表达式匹配的文本搜索字符串。如果找到匹配,则返回结果数组; 否则,返回null。
语法

regexpobject.exec( string );

下面是参数的详细信息:

  •     string : 要搜索的字符串

返回值:

  • 如果找到一个匹配,如果不为空,则返回匹配的文本。

例子:

<html>
<head>
<title>javascript regexp exec method</title>
</head>
<body>
<script type="text/javascript">
  var str = "javascript is an interesting scripting language";
  var re = new regexp( "script", "g" );

  var result = re.exec(str);
  document.write("test 1 - returned value : " + result); 

  re = new regexp( "pushing", "g" );
  var result = re.exec(str);
  document.write("<br />test 2 - returned value : " + result); 
</script>
</body>
</html>

这将产生以下结果:

test 1 - returned value : script
test 2 - returned value : null