I am retriving data from database where a field contains String with HTML data. I want to replace all the double quotes such that it can be used for parseJSON of jQuery.
Using java i am trying to replace the quotes using..
details.replaceAll("\"","\\\"");
//details.replaceAll("\"",""e;"); details.replaceAll("\"",""");
Have tried al lthis way but the resulatnt string doesnt show the change. O'reily article prescribes Article apache string utils. Is there any other way??
Any regex or something?