in reply to Grep expansion problem

Is there a specific reason for doing an exact match via regex when an equality check would suffice?
if ( grep $_ eq $x, @b ) { ... }
This would be faster and would not be vulnerable to metacharacter interpolation.

Ivan Heffner
Sr. Software Engineer, DAS Lead
WhitePages.com, Inc.

Replies are listed 'Best First'.
Re^2: Grep expansion problem
by Lyndley (Novice) on Sep 08, 2005 at 07:46 UTC
    Well it's just a proof of problem script. ;)

    Cheers all =)