my @email = <OPENFILE>; close OPENFILE; my $count; foreach my $email (@email){ if ($email =~ /mailto:/) { $count += 1; } print $count; # error here } [download]
In reply to counter for each regex match. by tty1x