Escape the given string. @param input the string @return the escaped string
(String input)
| 129 | * @return the escaped string |
| 130 | */ |
| 131 | public static String escape(String input) { |
| 132 | return escape(input, 0, input.length()).toString(); |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * Escape the given char sequence. |
no test coverage detected