var search = new RegExp("<span class=\"highlight\">(?<text>.*)</span>", "g");

Is there something wrong with the RegEx? Firebug just says "invalid quantifier". Thats it, no more information.

link|improve this question

70% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The question mark quantifier is wrong there. You want to match and collect between the brackets (). Doing (? is wrong, if you want to match ( you should escape the brackets.

var search = new RegExp("<span class=\"highlight\">(<text>.*)</span>", "g");

link|improve this answer
2  
I'm pretty sure the (?<text>.*) was supposed to be a named group, which isn't supported by JavaScript regexes. The equivalent non-named group would be (.*). – Alan Moore Jan 24 at 8:36
hmm, hadn't thought so far, good input – pduersteler Jan 24 at 14:00
@Alan Moore: Yeah, it was. I used the non-named group instead. – Display Name Jan 25 at 9:14
feedback

Your Answer

 
or
required, but never shown

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