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
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…