Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: offset of named capture buffer

by AnomalousMonk (Archbishop)
on Jan 30, 2013 at 13:11 UTC ( [id://1016057]=note: print w/replies, xml ) Need Help??


in reply to offset of named capture buffer

Per perlre:

"(?<NAME>pattern)"
    A named capture group. Identical in every respect to normal
    capturing parentheses "()" but for the additional fact ...

Don't know if this helps much, but if you already know the ordinal number of the capture group associated with a named capture, then  @- @+ work exactly as advertised. (But it sounds as if you want to go from the named group to its capture group ordinal.)

>perl -wMstrict -le "my $s = 'xxx fooooo yyy'; ;; $s =~ m{ (x+) .*? (?<FOO>fo+) .*? (y+) }xms; ;; print qq{'$1' '$+{FOO}' '$3'}; print qq{'$1' '$2' '$3'}; print qq{/fo+/ at $-[2] to $+[2]}; " 'xxx' 'fooooo' 'yyy' 'xxx' 'fooooo' 'yyy' /fo+/ at 4 to 10

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1016057]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (3)
As of 2024-04-25 20:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found