replaceQuote static method

String replaceQuote(
  1. String? text
)

Replace quote e.g. Hello"World => Hello"World

@param text origin text @return String

Implementation

static String replaceQuote(String ?text) {

  return text!.replaceAll("\"", "\\[\"]");
}