我正在尝试替换一些文本,例如:
I need the %r for the bike.
Where%r
被另一个值替换。
可以说我替换%r
为$$$$
.
var text = 'I need the %r for the bike.';
return text.replace("%r", "$$$$");
而不是得到预期的结果:
I need the $$$$ for the bike.
我得到:
I need the $$ for the bike.
我在这里缺少什么吗?