- or download this
use strict;
use warnings;
...
print "Number of patterns found for $patterns[$i] is $count[$i] \
+n";
}
close $FILEHANDLE;
- or download this
$count[$i]++ if /$patterns[$i]/;
- or download this
$count[$i]++ and last if $_ ~~ $patterns[$i];
- or download this
$count[$i]++ and last if /$patterns[$i]/;