remove of space from string java code example
Example 1: remove last character from string java
private static String removeLastChar(String str) {
return str.substring(0, str.length() - 1);
}
Example 2: remove space string java
a = a.replaceAll("\\s+", "");