i am a beginner in programing and i am trying to write a program wit perl which should returns the frequency of all words in the file and the length of each word in the file (not the summe of all characters!) to produce a Zipf curve from a spanish text (is not a big deal if you don't know what a Zipf's curve is). Now my problem is: i can do the first part and i get the frequency of all word but i don't how to get the length of each word! :( I know the command line $word_length = length($words) but after trying to change the code i really don't know where i should include it and how to count the length for each word.
Thats how my code looks like until know:
#!/usr/bin/perl
use strict;
use warnings;
my %count_of;
while (my $line = <>) { #read from file or STDIN
foreach my $word (split /\s+/gi, $line){
$count_of{$word}++;
}
}
print "All words and their counts: \n";
for my $word (sort keys %count_of) {
print "$word: $count_of{$word}\n";
}
__END__
I hope somebody have any suggestions!
Thanks in advanced
giflags are not needed:split /\s+/, $line– toolic May 31 '11 at 14:42word,Wordandword,all being treated like different words, which may not be what you want. – TLP May 31 '11 at 17:22