vote up 2 vote down star

Is it possible to do something like this?

var pattern = /some regex segment/ + /* comment here */
    /another segment/;

Or do I have to use new RegExp() syntax and concatenate a string? I'd prefer to use the literal as the code is both more self-evident and concise.

flag

4 Answers

vote up 6 vote down check

Here is how to create a regular expression without using the regular expression literal syntax. This lets you do arbitary string manipulation before it becomes a regular expression object:

var segment_part = "some bit of the regexp";
var pattern = new RegExp("some regex segment" + /*comment here */
              segment_part + /* that was defined just now */
              "another segment");

If you have two regular expression literals, you can in fact concatenate them using this technique:

var expression_one = /foo/;
var expression_two = /bar/;
var expression_three = new RegExp(expression_one.source + expression_two.source);

It's not entirely a good solution, as you lose the flags that were set on expression_one and expression_two, and is more wordy than just having expression one and two being literal strings instead of literal regular expressions.

link|flag
Not to be rude but, I think it was clear that I know that, I was specifically asking if it can be done with the literal. – eyelidlessness Oct 9 '08 at 0:56
Stackoverflow isn't just for you and me, it's designed to be searched and used as an archive of questions and answers - I gave a proper code example so that someone with a similar question can easily see an appropriate solution. – Jerub Oct 9 '08 at 1:13
var regex1 = /asdf/; var regex2 = /qwerty/; var regex3 = new RegExp(regex1 + regex2); // /\/asdf\/\/qwerty\// – eyelidlessness Oct 9 '08 at 1:35
See the '.source' attribute I'm accessing. new RegExp(regex1.source + regex2.source) -> /asdfqwerty/ – Jerub Oct 9 '08 at 2:54
Oof, I missed that. Thanks! That will do. – eyelidlessness Oct 9 '08 at 3:36
show 2 more comments
vote up 1 vote down

You'll have to use new RegExp !-)

link|flag
vote up 0 vote down

No, the literal way is not supported. You'll have to use RegExp.

link|flag
vote up 0 vote down

I prefer to use eval('your expression') because it does not add the /on each end/ that ='new RegExp' does.

link|flag

Your Answer

Get an OpenID
or

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