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

Categories

0 votes
402 views
in Technique[技术] by (71.8m points)

javascript - How do I match a number inside square brackets with regex

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

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

1 Answer

0 votes
by (71.8m points)

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...