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

Perhaps you also will be interested in:</p.

my %dict = ( 'brown' => 'yellow', qr/int(\d+)/ => 'int', qr/float(\d+)/ => 'float', );
That doesn't do anything for me.

Edit: Woohoo. More negative rep. Keep it coming. I'm shooting for -100,000 by next week.

Replies are listed 'Best First'.
Re^3: Hash of Regex
by zwon (Abbot) on Apr 06, 2010 at 22:33 UTC
    That doesn't do anything for me.
    That shouldn't. OP asked if he can use regexp as a hash key, so I think he may be interested in inspecting content of mentioned hash with the help of Data::Dumper
      Thanks, I should have first checked the content of my hash using Data::Dumper.