Do you mean that you want the string to do this:
0123456789 123456789 23456789 3456789 456789 56789 6789 789 89 9
use strict; use warnings; my $sequence = "0123456789"; my @frames; while ($sequence) { push @frames, $sequence; $sequence = substr $sequence, 1; } print join "\n", @frames;
In reply to Re: Array - Reading frame problem
by GrandFather
in thread Array - Reading frame problem
by Nadiah
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |