in reply to Re: Regex problem
in thread Regex problem

Thanks Abigail & Kurt for saving my sanity.

The missing semi-colon was a typo:(

The problem, once I had stopped focusing on the regex was a line at the top of the loop that did

next if m/keyword/;

I some how deleted the ! from in front of the m//? It was there earlier....grrrr.

Replies are listed 'Best First'.
Re: Re: Re: Regex problem
by amphiplex (Monk) on Jul 04, 2002 at 18:13 UTC
    just a sidenote: this additional check will not increase the performance of your script but actually slow it down.

    ---- kurt