Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Hash of Array of Hashes

by nvivek (Vicar)
on Apr 28, 2011 at 05:06 UTC ( [id://901709]=note: print w/replies, xml ) Need Help??


in reply to Hash of Array of Hashes

You explain with an example data. Now I tried with an example hash according to your description. If I understood your hash structure wrongly, you give the example data.

use strict; use warnings; use Data::Dumper; my %hash=("logins" => [ { '1' => 'http://www.perlmonks.com/?node_id=90 +1658' , '2' => 'http://www.google.com' }, { '3'=> 'http://www.bksyste +ms.co.in'}]); #prints the structure of the hash print Dumper \%hash; print "==========================\n"; # getting the length of an array and going through each index of an ar +ray for (0 .. length @{$hash{'logins'}}) { for my $key (keys%{$hash{'logins'}[$_]}) { # printing key and value print "Key: $key and Value:$hash{'logins'}[$_]{$key}\n"; + } print "==========================\n" }

Log In?
Username:
Password:

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

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

    No recent polls found