Java 8 Entfernen Sie Leerzeichen von der Saite
a.replaceAll("\\s+","");
2 Programmers 1 Bug
a.replaceAll("\\s+","");
String withSpaces = " Hi ";
String withoutSpaces = withSpaces.trim();
String str = "Hello ";
System.out.println(str.trim()); // "Hello"