To avoid complicated nested loops, I'd make use of a hash to index your first file and then look up the second list of words in the hash. Here is something a bit more simple that you can mess with to fit your needs:
#!/usr/bin/env perl
use strict;
use warnings;
use feature 'say';
my $file_1 =
"the cat ran up the tree the cat the dog then barked at the cat the
+cat jumped out of the tree";
my $file_2 = "the cat dog";
my %words;
$words{$_}++ for split / /, $file_1;
say "$_: $words{$_} occurrence(s)" for split / /, $file_2;
__END__
the: 7 occurrence(s)
cat: 4 occurrence(s)
dog: 1 occurrence(s)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.