Java Utililty Methods Char Array Escape

List of utility methods to do Char Array Escape

Description

The list of methods to do Char Array Escape are organized into topic(s).

Method

StringcharsToEscapes(String str)
Escapes newlines, tabs, backslashes, and quotes in the specified string.
return charsToEscapes(str, "\n\t\\\"'");
StringcharsToEscapes(String str)
Escapes newlines, tabs, backslashes, quotes in the specified string.
return charsToEscapes(str, false);