當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。