Android Question remove non-breaking space( ) formatting from a string

JohnC

Expert
Licensed User
Longtime User
A search of "replace string" in this forum gave this result:


B4X:
Dim s As String
s = "text with   in it"
s = s.Replace(" ", "")
 
Upvote 0
Top