Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^2: printing hash values, (don't need the keys)

by GrandFather (Saint)
on Jul 06, 2006 at 22:32 UTC ( [id://559685]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $data_file = "ActiveItems2.txt";
    open(DAT, $data_file) || die("Could not open file: $!");
    ...
    print for sort keys %seen;
    
    close(DAT);
    
  2. or download this
    @seen{<DAT>} = (); # Hash slice assignement
    print for sort keys %seen;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-20 00:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found