我想String.replaceAll()
在JavaScript中创建一个方法,并且我认为使用正则表达式是最简洁的方法。但是,我不知道如何将变量传递给正则表达式。我能做到这一点已经将取代所有的实例"B"
有"A"
。
"ABABAB".replace(/B/g, "A");
但是我想做这样的事情:
String.prototype.replaceAll = function(replaceThis, withThis) {
this.replace(/replaceThis/g, withThis);
};
但是显然这只会替换文本"replaceThis"
...所以如何将这个变量传递给我的正则表达式字符串?
For multiple replace without regular expressions I went with the following:
The important part of the solution was found here