JavaScript-在字符串匹配中使用变量


89

我发现了几个类似的问题,但并没有帮助我。所以我有这个问题:

var xxx = "victoria";
var yyy = "i";
alert(xxx.match(yyy/g).length);

我不知道如何在match命令中传递变量。请帮忙。谢谢。



还有一件事:如果您使用变量来构造正则表达式,则应注意该变量可能包含正则表达式特殊字符。例如,如果您传递“ c ++”,则正则表达式编译器将抱怨SyntaxError: Invalid regular expression: /c++/: Nothing to repeat
dotslashlu 16/12/19

Answers:


186

尽管match函数不接受字符串文字作为正则表达式模式,但是您可以使用RegExp对象的构造函数并将其传递给String.match函数:

var re = new RegExp(yyy, 'g');
xxx.match(re);

您需要的任何标志(例如/ g)都可以进入第二个参数。


2
+1,这是首选方式,顺便说一句,如果传递给match方法的参数不是RegExp对象,则内部RegExp将使用该值调用构造函数,因此可以使用字符串模式,例如:"a123".match("\\d+")[0] === "123";
Christian C.Salvadó


9

例如:

let myString = "Hello World"
let myMatch = myString.match(/H.*/)
console.log(myMatch)

要么

let myString = "Hello World"
let myVariable = "H"
let myReg = new RegExp(myVariable + ".*")
let myMatch = myString.match(myReg)
console.log(myMatch)


0

无论如何对我来说,看到它的使用很有帮助。刚刚使用“ re”示例进行了此操作:

var analyte_data = 'sample-'+sample_id;
var storage_keys = $.jStorage.index();
var re = new RegExp( analyte_data,'g');  
for(i=0;i<storage_keys.length;i++) { 
    if(storage_keys[i].match(re)) {
        console.log(storage_keys[i]);
        var partnum = storage_keys[i].split('-')[2];
    }
}

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.