使用正则解决Js、JQuery replace 只替换第一个的问题

时间:2021-02-07 05:40:24

  替换全部的代码:

re = new RegExp("aaa", "g");
str = str.replace(re, "bbb");

  上面代码的意思是把str里的aaa全部替换为bbb

  RegExp("aaa", "g");第一个参数是想要替换的内容,第二个参数 “g”是匹配全部的意思

拓展:

<textarea id="example" style="width:300px;height:200px;"></textarea>
<script type="text/javascript">
var haha="11111111<br />2222<br />33333"
re = new RegExp("<br />", "g");
haha = haha.replace(re, "\n");
document.getElementById("example").value=haha;
</script>