http://qs321.pair.com?node_id=1177392


in reply to Output problems

The large amount of commented-out code may be hiding something... I see you have declared @array, but I can't spot where you populate it.

It also seems to me that you probably don't want @array anyways, since that implies reading the entire file into memory instead of processing it a line at a time. Replacing @array with my $line = <$ifh> is usually the better approach.