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.