Help for this page

Select Code to Download


  1. or download this
    $foo = "\tfoo";
    $_ = ">>ha<<\n";  s/ha/$foo/;      print;
    $_ = ">>ha<<\n";  s/ha/\Q$foo\E/;  print;
    ...
    $_ = ">>ha<<\n";  s/ha/\Q$foo\E/;  print;
    quotemeta $foo;  # update: this is doing nothing!
    $_ = ">>ha<<\n";  s/ha/$foo/;      print;
    
  2. or download this
    >>      foo<<
    >>\     foo<<
    >>      foo<<
    >>\tfoo<<
    >>\\tfoo<<
    >>\tfoo<<