Problem:
I am unable to parse json request to an object containing double quotes in it. For example:
jsonString = {
"desc":"Hello stackOverFlow, please reach on this email "asdas@gmail.com". thanks";
}
When I am trying to convert this I am not able parse to an variable, because it looks like invalid json but in real time the request has double quotes in it.
Please show me some good parsing techniques which can do parse this type of requests.
Thanks