Help for this page

Select Code to Download


  1. or download this
    for(my $x=14; $x<@fileContents; $x++)
    
  2. or download this
    for (13 .. $#fileContents) {
        print "$fileContents[$_]\n";    # Or whatever
    }
    
  3. or download this
    my $lines_to_skip = 14;
    
    ...
        chomp($line);
        # Do stuff with $line
    }