当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Javascript exec()用法及代码示例


JavaScript中的exec()方法用于测试字符串中的匹配项。如果存在匹配项,则此方法返回第一个匹配项,否则返回NULL。

用法:

RegExpObject.exec(str)

其中str是要搜索的字符串。这是必填字段。示例1:此示例在原始字符串中搜索字符串“computer”。


<!DOCTYPE html> 
<html> 
  
<body style="text-align:center"> 
    <h1 style="color:green"> 
      GeeksforGeeks 
  </h1> 
    <h2>exec() Method</h2> 
    <p> 
      String:GeeksforGeeks is the  
      computer scince portal for geeks. 
  </p> 
    <button onclick="geek()"> 
      Click it! 
  </button> 
    <p id="app"></p> 
    <script> 
        function geek() { 
            var str = 
                "GeeksforGeeks is the "+ 
                "computer science portal for geeks."; 
            
            var regex = new RegExp("computer", ); 
            // match "computer" in string.                        
            var rex = regex.exec(str); 
            document.getElementById("app").innerHTML = 
                " Found " + rex.length + " match:" + rex; 
        } 
    </script> 
</body> 
  
</html>

输出:
在单击按钮之前:
exec
单击按钮后:
exec

示例2:本示例在原始字符串中搜索字符串“rep”。

<!DOCTYPE html> 
<html> 
  
<body style="text-align:center"> 
    <h1 style="color:green"> 
      GeeksforGeeks 
  </h1> 
    <h2> 
      exec() Method 
  </h2> 
    <p> 
      String:GeeksforGeeks  
      is the computer scince  
      portal for geeks. 
  </p> 
    <button onclick="geek()"> 
      Click it! 
  </button> 
    <p id="app"></p> 
    <script> 
        function geek() { 
            var str =  
                "GeeksforGeeks is the"+ 
                " computer science "+ 
                "portal for geeks."; 
            var regex = new RegExp("rep"); 
            
            // Match "rep" in string. 
            var rex = regex.exec(str); 
            alert(rex); 
        } 
    </script> 
</body> 
  
</html>

输出:
在单击按钮之前:
exec
单击按钮后:
exec

支持的浏览器:下面列出了JavaScript exec()方法支持的浏览器:

  • 谷歌浏览器
  • 苹果Safari
  • 火狐浏览器
  • Opera
  • IE浏览器


相关用法


注:本文由纯净天空筛选整理自Vishal Chaudhary 2大神的英文原创作品 JavaScript | exec() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。