Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Regex's and Multidimensional Arrays

by gnosti (Chaplain)
on Sep 16, 2010 at 05:11 UTC ( [id://860314]=note: print w/replies, xml ) Need Help??


in reply to Regex's and Multidimensional Arrays

While it appears that the OP needs to learn more about references to use multidimensional arrays, he raises a good question about iterating over multidimensional or other complex data structures. I'll just briefly put in a plug for Brad Bowman's excellent module, Data::Rmap, which offers several ways to accomplish this. In this instance:
use Data::Rmap; @days=qw(mon tues wed thurs fri sat sun); @cols=qw(red orange yellow green blue indigo violet); @vars = (\@days, \@cols); rmap {s/e/E/g} @vars; print Dumper(\@vars); -- $VAR1 = [ [ 'mon', 'tuEs', 'wEd', 'thurs', 'fri', 'sat', 'sun' ], [ 'rEd', 'orangE', 'yEllow', 'grEEn', 'bluE', 'indigo', 'violEt' ] ];

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-04-23 15:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found