Help for this page

Select Code to Download


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