That's a non-trivial problem. And the non-triviality in it lies in the definition of "word". What is a word to you? Is "can't" a word? Is it two words? What about "Smith-Jones"? One word? Or two?

Now, suppose you have regexes for words, and strings of non-word characters, it becomes easy:

my $word_pat = qr /.../; my $non_word_pat = qr /.../; if (/word1${non_word_pat}(?:${word_pat}${non_word_pat}){0,4}word2/) { ... no more than 4 words between word1 and word2 ... }
But you have to create the $word_pat and $non_word_pat patterns yourself, as I do not know what you consider a word, and what not.

In reply to Re: Regex Problem by JavaFan
in thread Regex Problem by remluvr

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.