我有这样的字符串
<html>
[[Wayfinder? &startId=`0` &outerClass=`art-hmenu` ]] &
&
</html>
我想更改&
内的所有[[
,]]
将替换为&
如何使用javascript进行操作?
答案 0 :(得分:5)
str.replace(/\[\[(.*)?]]/, function(match) {
return match.replace(/&/g, '&');
});