23021959Pepe Member Licensed User Longtime User Mar 30, 2014 #1 Hello, I am trying to remove whitespace between characters in a string or chain but can not. Example: "1 2 3 4 5 6" so that it follows "123456" Any tips? Thanks
Hello, I am trying to remove whitespace between characters in a string or chain but can not. Example: "1 2 3 4 5 6" so that it follows "123456" Any tips? Thanks
NJDude Expert Licensed User Longtime User Mar 30, 2014 #2 Like this: B4X: Dim MyString As String MyString = "1 2 3 4 5 6" MyString = MyString.Replace(" ", "") MsgBox(MyString, "")
Like this: B4X: Dim MyString As String MyString = "1 2 3 4 5 6" MyString = MyString.Replace(" ", "") MsgBox(MyString, "")
23021959Pepe Member Licensed User Longtime User Mar 30, 2014 #3 Thank you, almost making me go crazy and forty thousand probaturas me was as simple as you indicate. The little time that we have those things B4A. Thank you again
Thank you, almost making me go crazy and forty thousand probaturas me was as simple as you indicate. The little time that we have those things B4A. Thank you again