Hi monks

I'm matching strings (single words) contained in the array called @tokens against other strings (single words->stopwords) contained in the array called @stopords with the purpose of finding out if my strings (words) are present in the array, thus they are stopwords and I can discard them from the process. It is simple like that:

foreach my $token (@tokens) { if (grep /$token/i, @stopwords) { print "Stopword $token discarded\n"; } else { print "$token is okay\n"; } }

For some items in @tokens I get the following error message: An error occurred (Unmatched ) in regex; marked by <-- HERE in m/b) <-- HERE / at script.pm line 22

I guess it has to do with having meta characters in $token. But I don't know how to solve it in my example. Any suggestion will be appreciated


In reply to grep unmatch error by Anonymous Monk

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.