Help for this page

Select Code to Download


  1. or download this
       warn 'tab' if unescape("\\t")  eq "\t";
       warn 'nl'  if unescape("\\n")  eq "\n";
    ...
    
          return $s;
       }
    
  2. or download this
       my %SLASHED = (
          t => "\t",
    ...
    
          return $s;
       }