List of utility methods to do Char Array Escape
String | charsToEscapes(String str) Escapes newlines, tabs, backslashes, and quotes in the specified string. return charsToEscapes(str, "\n\t\\\"'"); |
String | charsToEscapes(String str) Escapes newlines, tabs, backslashes, quotes in the specified string. return charsToEscapes(str, false);
|