gpt4 book ai didi

javascript - 替换所有出现的正则表达式不起作用

转载 作者:行者123 更新时间:2023-11-28 20:14:39 25 4
gpt4 key购买 nike

我有以下代码:

var temp = '<p class="fasfasfasd">Type <strong>Markdown</strong> here. {:.fasfasfasd}</p>'+
'<p class="fdfsdf">fdsfsdf {:.fdfsdf}</p>'
//this should match everything like {:*}
var re = /\{:(.*?)\}/;
console.log(temp);
temp = temp.replace(re, "", 'gm');
console.log(temp);

这是一个运行示例:http://jsfiddle.net/AL8DN/

我想删除字符串 temp 中出现的所有正则表达式 re。但是,正则表达式的第二个匹配项永远不会被删除。我做错了什么?

最佳答案

来自 Mozilla 开发人员引用:

The use of the flags parameter in the String.replace method is non-standard. Instead of using this parameter, use a RegExp object with the corresponding flags

因此,将其更改为:

var temp = '<p class="fasfasfasd">Type <strong>Markdown</strong> here. {:.fasfasfasd}</p>'+
'<p class="fdfsdf">fdsfsdf {:.fdfsdf}</p>'
var re = /\{:(.*?)\}/gm;
console.log(temp);
temp = temp.replace(re, "");
console.log(temp);

看起来工作正常。

关于javascript - 替换所有出现的正则表达式不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19387502/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com