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