Help for this page

Select Code to Download


  1. or download this
    $/ = undef;
    my $string = <$filehandle>;
    
  2. or download this
    my $old_terminator = $/;
    $/ = undef;
    my $string = <$filehandle>;
    $/ = $old_terminator;
    
  3. or download this
    my $string;
    {
      local $/ = undef;
      $string = <$filehandle>;
    }
    
  4. or download this
    my $string;
    {
      local $/;
      $string = <$filehandle>;
    }
    
  5. or download this
    my $string = do {
      local $/;
      <$filehandle>;
    }
    
  6. or download this
    local $/ = <$filehandle>