Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Iterating over code embeded in regex

by ioannis (Abbot)
on Jun 13, 2006 at 05:34 UTC ( [id://554954]=note: print w/replies, xml ) Need Help??


in reply to Iterating over code embeded in regex

The snippet bellow shows that the $l inside the embedded code of the regex is a closure.

use Scalar::Util 'refaddr'; for my $l ('a'..'b') { print 'loop variable ', refaddr \$l; $l =~ /(?{ print refaddr(\$l) }) /x; }

Here is the output:

loop variable 135603848 135606104 loop variable 135606092 135606104

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (6)
As of 2024-04-23 17:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found