Help for this page

Select Code to Download


  1. or download this
            $line = <$FILE>;
            until ( $line =~ /^c/ or $line =~ /^mt?\d+/ ) {
                ...
                $line = <$FILE>;
            }
    
  2. or download this
    while (<$FILE>) {
      if (m/^m/) { ... }
    ...
      elsif (m/^c/) { ... }
      else { die "whoops - didn't expect: $_" }
    }