我有这样的字符串
<html>
[[Wayfinder? &startId=`0` &outerClass=`art-hmenu` ]] &
&
</html>
我想改变&
里面的所有内容[[
,]]
并将被替换为&
如何用 javascript 做到这一点?
我有这样的字符串
<html>
[[Wayfinder? &startId=`0` &outerClass=`art-hmenu` ]] &
&
</html>
我想改变&
里面的所有内容[[
,]]
并将被替换为&
如何用 javascript 做到这一点?
str.replace(/\[\[(.*)?]]/, function(match) {
return match.replace(/&/g, '&');
});
这是小提琴:http: //jsfiddle.net/Jtv5a/