escape function

String escape(
  1. String raw
)

Implementation

String escape(String raw) {
  return raw.replaceAll("\"", "\\\"");
}