Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Preceptor's scratchpad

by Preceptor (Deacon)
on Jun 03, 2004 at 19:32 UTC ( [id://360399]=scratchpad: print w/replies, xml ) Need Help??

#!/usr/bin/perl use strict; use warnings; use autodie; #Get the filename from the first argument. my ($filename) = @ARGV; #open it to read it. open( my $input_data, "<", $filename ); #set up somewhere to store our count. my %word_count; #cycle through one line at a time. while (<$input_data>) { chomp; #take each line, split it by spaces and #count the number of occurances foreach my $word (split) { $word_count{$word}++; } } #print the results. Sort %word_count into count order. #(Descending) and print. foreach my $word ( sort { $word_count{$b} <=> $word_count{$a} } keys %word +_count ) { print "$word = $word_count{$word}\n"; }
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found