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

Re^3: Hash of Regex

by crashtest (Curate)
on Apr 06, 2010 at 23:23 UTC ( [id://833152]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Hash of Regex
in thread Hash of Regex

Only strings can be hash keys. So when building %dict with regular expressions (the qr// constructs), they are converted to strings to become keys in the hash1. For regular expressions, incidentally, these are strings that can be compiled back into the same regular expression they stemmed from - which is quite convenient.

So why did this not do anything to bichonfrisee74's input strings?

my %dict = ( 'brown' => 'yellow', qr/int(\d+)/ => 'int', qr/float(\d+)/ => 'float', );
I was scratching my head myself until I use'd re 'debug'. zwon happened to forget to escape the parentheses in his (intermediary) example. So if you use the (correctly written) qr// constructs below, things "work" as expected:
my %dict = ( 'brown' => 'yellow', qr/int\(\d+\)/ => 'int', qr/float\(\d+\)/ => 'float', );


1The ?-xism used to confuse me until I realized this just explicitly states: turn off the x, i, s and m regex flags.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (2)
As of 2024-04-26 06:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found