Help for this page

Select Code to Download


  1. or download this
        while (($line = <>) && $line =~ /\S/) { ... }
        while (($line1 = <>) && ($line2 = <>)) { ... }
    
  2. or download this
        for (;$line = <>;) { ... }
    
  3. or download this
        next unless $line = <>;