in reply to Re: find a string a certain number of times
in thread find a string a certain number of times

while (<FILE>){ push @array, $_; }
is generally written
@array = <FILE>;

Caution: Contents may have been coded under pressure.