Help for this page

Select Code to Download


  1. or download this
    my @newarray = ();
    foreach my $i (@arrayindex)
    { unshift @newarray, (splice @array, $i);
      pop @array;
    }