Help for this page

Select Code to Download


  1. or download this
    while ( lines_to_read() ) {
        if ( the_line_is_the_right_header()) {
            if ( the_line_also_has_impressions) {
    ...
            }
        }
    }
    
  2. or download this
    while (files_to_read()) {
         next unless the_line_is_the_right_header();
         while ( lines_to_read() ) {
    ...
             last;    # no need to look further in this file
         }
    }