VegOwOtenks@lemmy.world to Programmer Humor@lemmy.mlEnglish · 1 year agoRegex flavorslemmy.worldimagemessage-square33fedilinkarrow-up1419arrow-down118
arrow-up1401arrow-down1imageRegex flavorslemmy.worldVegOwOtenks@lemmy.world to Programmer Humor@lemmy.mlEnglish · 1 year agomessage-square33fedilink
minus-squarejaybone@lemmy.worldlinkfedilinkarrow-up8·1 year agoCan you actually name capture groups, or this means how you can refer to them by number?
minus-squareVegOwOtenks@lemmy.worldOPlinkfedilinkarrow-up25·1 year agoYou can use backreferences \1 \2 etc. but you can also give them names explicitly. it looks like this: (?<name>inner-regex) Some flavors support it, kotlins doesn’t apparently.
minus-squaremormund@feddit.orglinkfedilinkEnglisharrow-up1·1 year 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·1 year agoIt’s (?<NAME>...) 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:
(?<name>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
(?<NAME>...)
and those are the named capture groups referred to in the post.