VegOwOtenks@lemmy.world to Programmer Humor@lemmy.mlEnglish · 4 months agoRegex flavorslemmy.worldimagemessage-square33fedilinkarrow-up1419arrow-down118
arrow-up1401arrow-down1imageRegex flavorslemmy.worldVegOwOtenks@lemmy.world to Programmer Humor@lemmy.mlEnglish · 4 months agomessage-square33fedilink
minus-squarejaybone@lemmy.worldlinkfedilinkarrow-up8·4 months agoCan you actually name capture groups, or this means how you can refer to them by number?
minus-squareVegOwOtenks@lemmy.worldOPlinkfedilinkarrow-up25·4 months agoYou can use backreferences \1 \2 etc. but you can also give them names explicitly. it looks like this: (?inner-regex) Some flavors support it, kotlins doesn’t apparently.
minus-squaremormund@feddit.orglinkfedilinkEnglisharrow-up1·4 months agoIn modern languages you can name them with labels as well yes. Not sure about the syntax right now. Something like (?label:…) I think
minus-squareqaz@lemmy.worldlinkfedilinkarrow-up4·4 months agoIt’s (?...) and those are the named capture groups referred to in the post.
Can you actually name capture groups, or this means how you can refer to them by number?
You can use backreferences
\1 \2
etc. but you can also give them names explicitly.it looks like this:
(?inner-regex)
Some flavors support it, kotlins doesn’t apparently.
TIL thanks!
In modern languages you can name them with labels as well yes. Not sure about the syntax right now. Something like (?label:…) I think
It’s
(?...)
and those are the named capture groups referred to in the post.