<!DOCTYPE html> <html> <body> <button onclick="myFunction()">Try it</button> <p id="demo">Paul,Paula,paul,Pauline,Paul</p> <script> function myFunction() { var str = document.getElementById("demo").innerHTML; var txt = str.replace(/\bPaul\b/g,"Ringo"); document.getElementById("demo").innerHTML = txt; } </script> </body> </html>
这一个语句var txt=str.replace(/\bPaul\b/g,"Ringo");中,运用正则表达式中的"g"修饰符进行全局匹配,而如果只用“g”修饰符就会使只要是"Paul"都会被替换成Ringo.
于是这时候就需要一个起限定作用的\b。
原文地址:https://www.cnblogs.com/HL345/p/9892531.html
时间: 2024-10-16 09:42:18