Help for this page

Select Code to Download


  1. or download this
    while (<FILE>) {
      chomp;
    ...
      next if /^$/; # skip blank lines (or, commented out lines)
      do_something_with($_);
    }