escapeSingleQuotes static method

String escapeSingleQuotes(
  1. String str
)
Remove any Escape symbols from the String

Implementation

static String escapeSingleQuotes(String str) => str.replaceAll("/g,", "\\");