Help for this page

Select Code to Download


  1. or download this
    $string= "This, that, and those";
    $string =~ s/,/\\",\\"/g;
    print $string;
    
  2. or download this
    This\",\" that\",\" and those