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>輸出
上述程式碼將產生以下輸出 -

單擊“點選此處”按鈕 -

廣告
資料結構
網路
關係資料庫管理系統
作業系統
Java
iOS
HTML
CSS
安卓
Python
C 語言程式設計
C++
C#
MongoDB
MySQL
JavaScript
PHP