- or download this
my ($key, @array[0,1], undef, $value) = split " ", $string;
- or download this
my ($key, @array[0,1], undef, $value) = split " ", $string, 6; # Split
+ five times, ignore the sixth value
- or download this
my ($key, $value) = (split(" ", $string, -1))[0,6];