in reply to Re^2: Array - Reading frame problem
in thread Array - Reading frame problem

It is, using the slice notation already mentioned above.
my $sequence = "1234567890"; my @chrsequence = (split //, $sequence)[1..length($sequence)-1]; print "array has " . scalar @chrsequence . " elements: @chrsequence\n" +;


holli, /regexed monk/