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

I wrote a regular expression which I expect should work but it doesn't.

  var regex = new RegExp('(?<=\[)[0-9]+(?=\])')

Javascript is giving me the error Invalid regular expression :(/(?<=[)[0-9]+(?=])/): Invalid group

Does javascript not support lookahead or lookbehind?

share|improve this question

3 Answers

up vote 9 down vote accepted

This should work:

var regex = /\[[0-9]+\]/;


edit: with a grouping operator to target just the number:

var regex = /\[([0-9]+)\]/;

With this expression, you could do something like this:

var matches = someStringVar.match(regex);
if (null != matches) {
  var num = matches[1];
}
share|improve this answer
This matches the number including the brackets, which is not what the OP wants. It's a decent alternative with groups, though. – strager Aug 9 '10 at 22:35
Good point - updated. – jmar777 Aug 9 '10 at 22:37
Thanks for the work-around. Slightly kludgeish but oh well. – Teddy Aug 10 '10 at 2:27
@Teddy: Nothing kludgy about it; for this kind of job, a capture group should be the first tool you reach for. – Alan Moore Aug 10 '10 at 6:59
@Alan: Agreed - it requires an extra line or so of procedural code to retrieve the value, but it does so with minimal backtracking in the expression, so it's a fairly optimal solution by my (limited) regex foo. @Teddy: Thanks for the accept! – jmar777 Aug 10 '10 at 11:44

Lookahead is supported, but not lookbehind. You can get close, with a bit of trickery.

share|improve this answer

If you're quoting a RegExp, watch out for double escaping your backslashes.

share|improve this answer

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.