in reply to Fast Way to Split String in to Chunk of Equal Length
Output:use Modern::Perl; use Data::Dump qw/dump/; my $seq = "CTTCGAATT"; # in this case length of 9 my @strings = $seq =~ /(.{3})/g ; say dump(@strings);
("CTT", "CGA", "ATT")
CountZero
A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Fast Way to Split String in to Chunk of Equal Length
by bart (Canon) on Nov 25, 2011 at 11:51 UTC | |
by CountZero (Bishop) on Nov 25, 2011 at 16:41 UTC |