Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to pass a variable to a regex

I have a find statement like this

collSession.find({"Venue.type": /.*MT.*/}).toArray(function (err, _clsSession)
        {
            console.log(_clsSession);
        });

It is giving answer.But i need to some value of variable instead of that harcoded value MT. How to achieve this ? Thanks.

UPDATE I tried like "/."+searchterm+"./" Its not working.

like image 451
Raj Avatar asked Jan 13 '23 13:01

Raj


1 Answers

Instead of using the inline syntax to create a regular expression, you can also use the RegExp object to create one based on a string

var searchPhrase = "MT";
var regularExpression = new RegExp(".*" + searchPhrase + ".*");
collSession.find({"Venue.type": regularExpression}) [...]
like image 152
Philipp Avatar answered Jan 21 '23 12:01

Philipp