in reply to Re^3: Bug in script, regex help req extreme urgent
in thread Bug in script, regex help req extreme urgent

BEGIN {undef $/;} ... print "Now parsing $filename\n"; my @file = <$INFILE>;

If you are reading line by line or into an array like this then you need to get rid of the undef $/ since that will make it read the whole file into the first element of the array.