Help for this page

Select Code to Download


  1. or download this
    $str = join ' ',<>;
    
  2. or download this
    {
      local $/;       # Temporarily set $/=undef: "total slurp mode"
      $str = <>;      # Slurp it all in one go!
    }