For example:
\"I don\'t like these \"double\" quotes\"
and I want the output to be
I don\'t like these double quotes
Strings are immutable, so you need to say
sInputString = sInputString("\"","");
not just the right side of the =
=