Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^2: join all elements in array reference by hash

by AnomalousMonk (Archbishop)
on Dec 30, 2012 at 05:56 UTC ( [id://1010894]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    for ( keys %{ $bible{'Genesis'}{'chapter 1'} }) {
        print $_, ": ", @{ $bible{'Genesis'}{'chapter 1'}{$_} }, $/;
    }
    
  2. or download this
    for (sort { $a <=> $b } keys %{ $bible{'Genesis'}{'chapter 1'} }) {
        print $_, ": ", @{ $bible{'Genesis'}{'chapter 1'}{$_} }, $/;
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-04-24 20:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found