diotalevi has asked for the wisdom of the Perl Monks concerning the following question:
If I write a regex which includes multiple capturing groups (qr/(\D+)(\d+)/ and (?{ }) eval blocks is there a way to find out which numbered variable was just assigned to? So if I wrote qr/(\D+)(\d+)(\D+)(?{ foo( ?? ) })/ is there a way to find out that I should be reading from $3 and not a different variable?
I tried writing some diagnostic code to compare the addresses of $+ and the numbered variables but that didn't do anything useful. It indicated that each of $+, $1, $2 and $3 are all separate variables and $+ isn't temporarily aliased to $3 which would at least let me compare references like \ $+ == \ $1. So what works?
$text = "abc123def"; $text_match = qr/(\D+)(\d+)(?{ dumpr() })(\D+)/; $text =~ $text_match; use Devel::Peek; sub dumpr { Dump($+), Dump($1), Dump($2), Dump($3); local $\ = "\n"; print $+; print $1; print $2; print $3; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Finding the right $<*digit*> capture variable
by Enlil (Parson) on Apr 15, 2003 at 22:34 UTC | |
by diotalevi (Canon) on Apr 16, 2003 at 05:01 UTC | |
Re: Finding the right $<*digit*> capture variable
by Enlil (Parson) on Apr 16, 2003 at 09:09 UTC | |
Re: Finding the right $<*digit*> capture variable
by tekkie (Beadle) on Apr 16, 2003 at 14:07 UTC | |
by hv (Parson) on Apr 17, 2003 at 13:26 UTC | |
by diotalevi (Canon) on Apr 17, 2003 at 13:48 UTC | |
by hv (Parson) on Apr 17, 2003 at 14:29 UTC |