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


JavaScript 正則 \S用法及代碼示例


JavaScript 中的 RegExp \S 元字符用於查找非空白字符。空白字符可以是空格/製表符/換行符/垂直字符。它與 [^\t\n\r] 相同。

用法:

/\S/ 

或者

new RegExp("\\S")

帶修飾符的語法:

/\S/g 

或者



new RegExp("\\S", "g")

範例1:此示例匹配非空白字符。


<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript RegExp \S Metacharacter
    </title>
</head>
  
<body style="text-align:center">
      
    <h1 style="color:green">
        GeeksforGeeks
    </h1>
      
    <h2>RegExp \S Metacharacter</h2>
      
    <p>
        Input String:GeeksforGeeks @ _123_ $
    </p>
      
    <button onclick="geek()">
        Click it!
    </button>
    <p id="app"></p>
      
    <script>
        function geek() {
            var str1 = "GeeksforGeeks @ _123_ $";
            var regex4 = /\S/g;
            var match4 = str1.match(regex4);
  
            document.getElementById("app").innerHTML = 
                    "Found " + match4.length
                    + " matches:" + match4;
        }
    </script>
</body>
  
</html>                    

輸出:
單擊按鈕之前:
backs
單擊按鈕後:
backs

範例2:此示例匹配非空白字符。


<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript RegExp \S Metacharacter
    </title>
</head>
  
<body style="text-align:center">
      
    <h1 style="color:green">
        GeeksforGeeks
    </h1>
      
    <h2>RegExp \S Metacharacter</h2>
      
    <p>Input String:Geeky@128</p>
      
    <button onclick="geek()">
        Click it!
    </button>
      
    <p id="app"></p>
      
    <script>
        function geek() {
        var str1 = "Geeky@128";         
            var regex4 = new RegExp("\\S", "g");
  
            var match4 = str1.match(regex4);
  
            document.getElementById("app").innerHTML = 
                    "Found " + match4.length
                    + " matches:" + match4;
        }
    </script>
</body>
  
</html>                    

輸出:
單擊按鈕之前:
backs
單擊按鈕後:
backs

支持的瀏覽器:下麵列出了 RegExp \S Metacharacter 支持的瀏覽器:

  • 穀歌瀏覽器
  • 蘋果Safari
  • 火狐瀏覽器
  • Opera
  • IE瀏覽器



相關用法


注:本文由純淨天空篩選整理自Vishal Chaudhary 2大神的英文原創作品 JavaScript | RegExp \S Metacharacter。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。