How to pass a variable into regex in jQuery/Javascript

后端 未结 3 552
孤城傲影
孤城傲影 2020-12-07 21:57

Is there a way to pass a variable into a regex in jQuery/Javascript?

I wanna do something like:

var variable_regex = \"bar\";
var some_string = \"foo         


        
3条回答
  •  孤城傲影
    2020-12-07 22:57

    Another way to include a variable in a string is through string interpolation. In JavaScript, you can insert or interpolate variables in strings using model literals:

    var name = "Jack";
    var id = 123321;
    
    console.log(`Hello, ${name} your id is ${id}.`);
    

    Note: be careful not to confuse quotation marks or apostrophes for the serious accent (`).

    You can use in function:

    function myPhrase(name, id){
       return `Hello, ${name} your id is ${id}.`;
    }
    

提交回复
热议问题