Help for this page

Select Code to Download


  1. or download this
    while (<FILE>) {
        if (/^Number1/) {
    ...
            # non-header
        }
    }
    
  2. or download this
    open ...
    my $header_line = <FILE>;
    while (<FILE>) {
        # data line
    }