escDoubleQ function

String escDoubleQ(
  1. String str
)

Implementation

String escDoubleQ(String str) {
  return str.replaceAll('"', '""');
}