how to remove white spaces in a string in java code example
Example 1: how to remove all whitespace from string java
st = st.replaceAll("\\s+","")
Example 2: remove space string java
a = a.replaceAll("\\s+", "");
Example 3: how to remove white space between numbers in a string in java
"Hello 111 222 333 World!"