in reply to Re: Regex problem
in thread Regex problem

This will help you,

grep(/^$index$/, @index_corr)

update:

As edan said, it will help you

grep{$index==$_} @index_corr

Prasad

Replies are listed 'Best First'.
Re^3: Regex problem
by edan (Curate) on Feb 16, 2005 at 12:25 UTC

    I downvoted your post, and I'll tell you why - IT'S WRONG! Why would you give somebody a regex solution when they clearly need to test for equality!? What if $index contained regex metacharacters? In short, I think it's a bad habit to use an anchored regex when you mean "equals". perl provides us with == and eq for a reason. Use them.

    --
    edan