Help for this page

Select Code to Download


  1. or download this
    my $slurp;
    {
    local $/ = undef;
    ...
    $slurp = <$textfile>;
    close $textfile;
    }
    
  2. or download this
    open my $textfile, '<', 'filename.txt' or die $!;
    while ( my $line = <$textfile> )
    {
      ## Do something with $line
    }