Replace quote e.g. Hello"World => Hello"World
"
@param text origin text @return String
static String replaceQuote(String ?text) { return text!.replaceAll("\"", "\\[\"]"); }