Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
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 imbibing at the Monastery: (1)
As of 2025-07-10 01:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.