"...this is beyond my abilities at this point..."

Scale the problem back to your actual abilities and start from there. If you are confused by complex regular expressions (like I often am), break the problem down into simpler ones until you are more familiar (note: this example only finds words that are near but appear after your search term):

use strict; =pod ...if either revenue(s), sales or growth occur within three words of +the word currency or the phrase "foreign exchange." =cut my @sources = ('foreign exchange','currency'); my $sourceData = <<EOF; foreign exchange revenue wordiness happycat smiles currency revenue world cat blue runny a nice happy foreign exchange said that revenues would be up the day I last visited my foreign exchange they said revenues were goo +d wow currency makes good growth when currency came revenues dipped EOF my %searchvector = map {$_=>$_} qw|revenue sales growth|; my $cntFound = 0; for (@sources) { while($sourceData=~m/$_\s+(\w+)\s*(\w+)?\s*(\w+)?\s*/g) #does the w +ord appear? { # is anything in the searchvector in the found words? for ($1,$2,$3) { my $r = $_; $r=~s/revenues/revenue/; if($searchvector{$r}){++$cntFound}; } } } print qq|Total times search (| . (join ' ', (values %searchvector)) . +') found: ' . $cntFound . qq|\n|; 1;
Total times search (growth sales revenue) found: 6

Celebrate Intellectual Diversity


In reply to Re: Problems counting regex matches by InfiniteSilence
in thread Problems counting regex matches by elcilorien

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.