Here you can find the source of sanitizeQuot(String html)
public static String sanitizeQuot(String html)
//package com.java2s; //License from project: Apache License public class Main { public static String sanitizeQuot(String html) { if (html == null || html.isEmpty()) { return html; }/* w ww . j a va2 s. c o m*/ return html.replace("\"", """); } }