List of utility methods to do Regex String Replace Whitespace
String | replaceWhiteSpaces(String str) replace White Spaces return PATTERN_WHITESPACE.matcher(str).replaceAll(" "); |
String | replaceWhiteSpacesByMinusSign(final String value) Replace white space characters (1..n) by the minus sign character return replaceWhiteSpaces(value, STRING_MINUS_SIGN);
|