in reply to Re^2: Getting range from N..end with list slice
in thread Getting range from N..end with list slice

Personally, I wouldn't fret on it. If the point is you want to do it all in one statement:
my @set = (split /\s+/, $x)[3 .. -1 + split /\s+/, $x];
But that splits twice.