码迷,mamicode.com
首页 > 其他好文 > 详细

RegExp实现字符替换

时间:2018-11-01 22:36:49      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:regex   set   regexp   innerhtml   字符   content   html   rap   span   

将字符串组中的所有Paul替换成Ringo,g:执行全局匹配,查找所有匹配而非在找到第一个匹配后停止;\b:匹配单词边界,划分匹配字符的起始范围

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript" src="JS.js"></script>
</head>

<body>
<p>Replace "Paul" with "Ringo" in the paragraph below:</p>

<button onclick="myFunction()">Try it</button>

<p id="demo">Paul,Paula,Pauline,paul,Paul</p>

</body>
</html>

JS代码:

function myFunction() {
    var str = document.getElementById("demo").innerHTML;
    var txt = str.replace(/\bPaul\b/g,"Ringo");
    document.getElementById("demo").innerHTML = txt;
}

 

RegExp实现字符替换

标签:regex   set   regexp   innerhtml   字符   content   html   rap   span   

原文地址:https://www.cnblogs.com/5H5H/p/9892426.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!