Help for this page

Select Code to Download


  1. or download this
    while (<>)
    {
    ...
       next if /^\s*$/;   # empty line
       do_the_work($_);
    }
    
  2. or download this
    while (<>)
    {
    ...
          do_the_work($_);
       }
    }