in reply to Identifying Reverse Position of Specific Character in a String
sub find_gap_ends { local $_ = shift; my @gap_end_pos; while ( /N(?!N)/g ) { push @gap_end_pos, pos; } @gap_end_pos }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Identifying Reverse Position of Specific Character in a String
by ikegami (Patriarch) on Aug 25, 2006 at 19:31 UTC | |
by jdporter (Paladin) on Aug 25, 2006 at 19:56 UTC | |
by ikegami (Patriarch) on Aug 25, 2006 at 20:02 UTC | |
by jdporter (Paladin) on Aug 25, 2006 at 20:18 UTC |