I have a json object which will be returned from the server side as follows.
{"name":"value which has \" "} for Ex : {"Key":"This Key\" "}
when i get this response on the client side it is automatically encoded as , result after stringify
{"Key":"This Key\\\" "}
Now i want to replace the \\\" to only \" so my UI can show only This Key"
Until i tried to do jsonString.replace(/\\\"/g,'\"'); but gives output of This Key\\"
Kindly help me, i have got it wrong..
Regards, Punith