Help for this page

Select Code to Download


  1. or download this
    for(my $i=0; $i<5; $i++) {
        delete $parsedfiles[$i];
    }
    
  2. or download this
    delete @parsedfiles[0..4];
    
  3. or download this
    splice(@parsedfiles, 0, 5);