Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
401 views
Welcome To Ask or Share your Answers For Others

1 Answer

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];
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...