最佳答案
我想在JavaScript中创建一个String.replaceAll()
方法,我认为使用正则表达式是最简洁的方法。然而,我不知道如何将变量传递给正则表达式。我已经可以这样做了,这将用"A"
替换"B"
的所有实例。
"ABABAB".replace(/B/g, "A");
我想做这样的事情:
String.prototype.replaceAll = function(replaceThis, withThis) {this.replace(/replaceThis/g, withThis);};
但显然这只会替换文本"replaceThis"
…那么我如何将此变量传递给我的正则表达式字符串?