在String.replace方法正则表达式中使用变量

时间:2019-04-08 09:29:00

标签: javascript regex

我正在使用正则表达式替换代码中的某些文本,如下所示:

text.replace(
    /\{\#(variable)\#\}/g,
    this.options.vars[i].companyName,
);

我想在模式内使用变量,因为我有一个像这样的字符串lorem ipsum {#variable1#} dolor {#variable2#},但是我找不到在模式内传递变量的方法。

0 个答案:

没有答案