Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would I go about passing function parameters into a regex query? Many thanks.

function match(str, arg1, arg2){
   var result = str.match(/(arg1 | arg2)/m);
   log(result) //null
}

match('claire nick steve', 'nick','steve');
share|improve this question
It is traditional to upvote answers. – SLaks Aug 6 '10 at 10:37

3 Answers

up vote 1 down vote accepted

You need to pass a normal string to the Regex constructor, like this:

var result = str.match(new Regex("(" + arg1 + "|" + arg2 + ")", "m");

If you use backslashes in the regex, you'll need to escape them (\\) since it's normal string literal.

share|improve this answer
= Thanks for the response. – screenm0nkey Aug 6 '10 at 10:31

http://www.regular-expressions.info/javascript.html

you are using a literal, try initializing the object with new RegExp("your string");

share|improve this answer
Thanks for the response. – screenm0nkey Aug 6 '10 at 10:35
function match(str, arg1, arg2){
   var re=new RegExp("(" + arg1 + "|" + arg2 +")","m");
   var result = str.match(re);
   log(result) //null
}

match('claire nick steve', 'nick','steve');
share|improve this answer
Thanks for the response. – screenm0nkey Aug 6 '10 at 10:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.