Help for this page

Select Code to Download


  1. or download this
    my @lines = <$fh>;                  # read whole file
    
    ...
            $match = 1;
        }
    }
    
  2. or download this
    while ( <$fh> )
    {
    ...
            $match = 1;
        }
    }
    
  3. or download this
    my $lines;
    while ( <$fh> )
    ...
        }
    }