Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Hash and count of data values

by bm (Hermit)
on Aug 18, 2003 at 13:45 UTC ( [id://284568]=note: print w/replies, xml ) Need Help??


in reply to Hash and count of data values

print "$item\t$hash{$item}\n";

should probably be something like

foreach (keys %hash) { print "$_\t$hash{$_}\n"; }

Note that you also have two sets of open and close calls in your snippet. Maybe you should look at one open/close with a while(<DATA>) {...} loop that populates your hash.
--
bm

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2024-04-25 09:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found