in reply to How to count substitutions on an array
my $count = 0; for (@array) { # I've had no difficulty counting substitutions on individual lin +e replacements # my $individual_line_replacement_count = ...; $count += $individual_line_replacement_count; }
Cheers - L~R
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: How to count substitutions on an array
by Anonymous Monk on Aug 13, 2016 at 02:29 UTC |