Help for this page

Select Code to Download


  1. or download this
    open FILE, 'test_file.txt' || die "$!\n";
    my $text = join( '', @{ [ <FILE> ] } );
    close FILE;
    
  2. or download this
    my $text;
    {
    ...
       local $/;
       $text = <$fh>;
    }