Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^3: accessing a hash of hashes

by Thilosophy (Curate)
on Feb 15, 2005 at 11:54 UTC ( [id://431122]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    foreach my $network (keys %urls) {
        foreach my $key (keys %{$urls{$network}}) {
            print "$key<br/>";
        }
    }
    
  2. or download this
    foreach my $network (values %urls) {
        foreach my $key (keys %$network) {
            print "$key<br/>";
        }
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (2)
As of 2024-04-26 02:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found