Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: beginnner perl hash question

by n3toy (Hermit)
on Feb 17, 2009 at 05:52 UTC ( #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? | Other CB clients
Other Users?
Others meditating upon the Monastery: (2)
As of 2023-06-10 07:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    How often do you go to conferences?






    Results (37 votes). Check out past polls.

    Notices?