vote up 2 vote down star

this is not what i'm asking for:

http://stackoverflow.com/questions/680446/concatenate-multiple-regexes-into-one-regex/680454

is there a way to append a regex into another one (in javascript language) ?

the reason for doing so is to simplify code maintenance (e.g. if the included string is long or easier to maintain by a non-programmer).

in python, for example, i'd write something like:

regstr1 = 'dogs|cats|mice'
regstr_container = '^animal: (cows|sheep|%s|zebra)$' % regstr1
re.compile(regstr_container)

however in javascript the regular expression is not a string.

re = /^animal: (rami|shmulik|dudu)$/;

or am i missing something?

flag

60% accept rate
i've closed this question; but didn't delete it so others that use the keywords i've used will reach this link: stackoverflow.com/questions/185510/… – Berry Tsakala Aug 23 at 15:54

2 Answers

vote up 5 vote down check

You don't have to use the literal notation. You could instead create a new RegExp object.

var myRegex = new RegExp("^animal: (rami|shmulik|dudu)$");
link|flag
+1, and you can make a placeholder: container = "...(cows|sheep|{BLAH}|zebra).."; var re = new Regexp(container.replace("{BLAH}", regstr1); – orip Aug 23 at 17:06
vote up 0 vote down
var regstr1 = 'dogs|cats|mice',
regstr_container = '^animal: (cows|sheep|'+ regstr1 +'|zebra)$',
regex = RegExp(regstr_container);
link|flag

Your Answer

Get an OpenID
or

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