正则表达式里添加变量

Posted 莫问、前程

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了正则表达式里添加变量相关的知识,希望对你有一定的参考价值。

给正则表达式添加变量:

方法一: new RegExp

function replace(str, before, after) {
    var reg = new RegExp(before, "g");
    return str.replace(reg, after);
}

var test =  ;
console.log(replace("A quick brown fox jumped over the lazy dog", "jumped", "leaped"));

方法二: eval

function replace(str, before, after) {
    return str.replace(eval("/"+before+"/g"), after);
}

       
console.log(replace("A quick brown fox jumped over the lazy dog", "jumped", "leaped"));

 

以上是关于正则表达式里添加变量的主要内容,如果未能解决你的问题,请参考以下文章

通过 Java 正则表达式提取 semver 版本字符串的片段

在java下如何在正则表达式中添加变量

jquery:给正则表达式添加变量

如何将变量错误添加到正则表达式模糊搜索。 Python

text 正则表达式片段

markdown 正则表达式模式片段