in reply to HTML-Parser usage
how to keep the count of how many times the word appears on EACH URL
You really mean each PAGE referenced by each URL, no?
I mean, what is the problem with
my $wordcount; loop_over_each_url {; search_through_each_page_content {; $wordcount++ (everytime_word_match); } }
|
|---|