JavaScript 正則表示式


正則表示式是一串字元,用於描述搜尋模式。此搜尋模式隨後用於指定我們在文字中搜索的內容。

以下是 JavaScript 中正則表示式的程式碼 -

示例

 線上演示

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   .sample,.result{
      font-size: 18px;
      font-weight: 500;
      color:red;
   }
</style>
</head>
<body>
<h1>JavaScript Regular Expressions</h1>
<div class="sample">The king bought the ring and went to the palace.</div>
<div style='color:black' class="result"></div>
<button class="Btn">CLICK HERE</button>
<h3>
Click on the above button to replace king with queen in the text above
</h3>
<script>
   let sampleEle = document.querySelector('.sample');
   let resultEle = document.querySelector('.result');
   document.querySelector('.Btn').addEventListener('click',()=>{
      let newText = sampleEle.innerHTML.replace(/king/gi,'queen');
      resultEle.innerHTML = 'Result = ' + newText;
   })
</script>
</body>
</html>

輸出

上述程式碼將產生以下輸出 -

單擊“點選此處”按鈕 -

更新於:2020-05-11

301 已檢視

開啟你的 職業生涯

完成課程來獲得認證

開始
廣告
© . All rights reserved.