in reply to counting overlapping patterns
my $count = 0; my $string = "AAAA"; $count++ while $string =~ /\GAA/gc;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: counting overlapping patterns
by dave_the_m (Monsignor) on Feb 18, 2005 at 20:28 UTC | |
by Anonymous Monk on Feb 18, 2005 at 20:34 UTC | |
Re^2: counting overlapping patterns
by Anonymous Monk on Feb 18, 2005 at 20:25 UTC | |
Re^2: counting overlapping patterns
by holli (Abbot) on Feb 18, 2005 at 20:25 UTC |