I have this clever idea to have the function use its own name as the slot for the return value.
sub regex { my $in = shift; # Assign something to $ret in a code assertion my $function = (caller 0)[3]; no strict 'refs'; $$function = ''; $in =~ m/^(a)(?{ $$function = 1})/; return $$function; } while(<DATA>) { print regex($_) . "."; } __DATA__ a b a abcd bcda
In reply to Re: Re: Re: Re: Scoping issues with code evaluation asserstions?
by diotalevi
in thread Scoping issues with code evaluation asserstions?
by Cirollo
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |