Help for this page

Select Code to Download


  1. or download this
      while (<STDIN>) {
        chomp              # same as chomp $_
        if (/^#/) {....}   # same as if ($_ =~ /^#/) { ....}
      }
    
  2. or download this
      while (my $line = <STDIN>)
      {
    ...
          # Action on $line.
        }
      }
    
  3. or download this
    $line =~ s/^#/# Comment /;