Here you can find the source of unescapeDoubleQuote(String stringToReplace)
public static String unescapeDoubleQuote(String stringToReplace)
//package com.java2s; //License from project: Apache License public class Main { public static String unescapeDoubleQuote(String stringToReplace) { return stringToReplace.replaceAll("\\\\\"", "\""); }//w w w.ja va2 s . c om }