Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^3: Counting Data in two columns?

by neniro (Priest)
on Jun 15, 2006 at 14:00 UTC ( [id://555502]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Counting Data in two columns?
in thread Counting Data in two columns?

#!/usr/bin/perl use strict; use warnings; use Data::Dumper; my %hoa = ( flintstones => [ "fred", "barney" ], jetsons => [ "fred", "jane", "elroy" ], simpsons => [ "homer", "marge", "bart" ], ); my @freds = grep { $hoa{$_}->[0] eq 'fred' } sort keys %hoa; print Dumper \@freds;

Replies are listed 'Best First'.
Re^4: Counting Data in two columns?
by sdslrn123 (Novice) on Jun 16, 2006 at 21:51 UTC
    Thank You. But is grep an unix command? Unfortunately, I do not use Unix?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (6)
As of 2024-04-19 11:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found