Using Java, I want to go through the lines of a text and replace all "" symbols with a null entity reference.
Here is a sample string
String str = "asdsadas:\"\":asdasdASD:\"\":aSdasdcsC";
Result wanted is
String resStr = "asdsadas:null:asdasdASD:null:aSdasdcsC"
escapingfrom you now :P