Could anyone offer some advice on the following.

The below code demonstrates the problem. Basically arrays @a and @b are the same so as the program iterates through array @a checking each value against array @b, grep should return true every time.

Trouble is it doesn't seem to when unusual characters are in the string, in this example brackets chars ( or ).

I'm sure this is something to do with the string being expanded inside the grep statment before grepping occurs but I'd just like to understand if this *is* why it's going wrong just why does it do it like that and what's the best way around it.

I wouldn't like to have to escape every character before grepping if at all possible.

Thanks.

use strict; my (@a,@b); @a=@b=("test1","test2(X)"); foreach(@a) { my $x=$_; if(grep(/^$x$/,@b)) { print "\"$x\" exists in \"@b\"\n"; } else { print "\"$x\" doesn't exist in \"@b\"\n"; } }

In reply to Grep expansion problem by Lyndley

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.