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

If what you mean is you want the array equivalent of substr, it's array slices. (splice looks similar to substr syntactically, but is different in that it's destructive of the source array.)
@frame2 = @sequence[ 1 .. $#sequence ];
The module Tie::OffsetArray could probably be used cleverly for this kind of frame-related problem.