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
613 views
in Technique[技术] by (71.8m points)

regex - What's the meaning of a number after a backslash in a regular expression?

(a|b)1

What does 1 mean in this expression?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

1 - it means the first capturing group in the matched expression. would be the nth capturing group. (Note that would be whole match). In many engines, the upperlimit for n is 9, but some support up to 99 as well.

When used in regex like (a|b)1, it means that after a or b, the next character should be the first captured group, which is a or b so the regex here would match aa or bb.


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

...