Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    8
    9
    10
    
  2. or download this
    while ( <FH> ) {
        next unless length; # Skip blank lines
    ...
    
        # Do something useful here
    }
    
  3. or download this
    while ( <FH> ) {
        if ( length ) {
    ...
            }
        }
    }