标签: javascript
是否可以将变量传递给正则表达式?
let name = "John"; let regex = /<&.*<--name-->.*&>/g; let string = string.repace(regex, value);
我该如何正确地将John传递给正则表达式?