Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: beginnner perl hash question

by n3toy (Hermit)
on Feb 17, 2009 at 05:52 UTC ( [id://744299]=note: print w/replies, xml ) Need Help??


in reply to beginnner perl hash question

You can initialize your hash with:

%hash = ();

And access it later on (after it is populated) in a loop like so:

foreach $key (keys %hash) { print $hash{$key} . "\n"; }

You can also look around the Monastery. This might be some good reading for you: QandASection: hashes

Jamie

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2024-03-19 10:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found