Hey,
i found this code on stackoverflow to remove whitespaces:
on B4A i tried this:
but it is not working.
i found this code on stackoverflow to remove whitespaces:
B4X:
st.replaceAll("\\s","")
Removing whitespace from strings in Java
I have a string like this: mysz = "name=john age=13 year=2001"; I want to remove the whitespaces in the string. I tried trim() but this removes only whitespaces before and after the whole string...
stackoverflow.com
B4X:
Regex.Replace("\\s",New, "")