K Ksmith1192 Member Licensed User Longtime User Feb 20, 2013 #1 Ok, this is probably an easy question. I have an EditText called QuestionTxt, and the user inputs "This is my question." I want this converted to where all spaces are turned into underscores (_) whenever the SendBtn is clicked. Any way I could easily do this?
Ok, this is probably an easy question. I have an EditText called QuestionTxt, and the user inputs "This is my question." I want this converted to where all spaces are turned into underscores (_) whenever the SendBtn is clicked. Any way I could easily do this?
NJDude Expert Licensed User Longtime User Feb 20, 2013 #2 Something like this: B4X: Dim theText As String theText = QuestionTxt.Text theText = theText.Replace(" ", "_") ... Upvote 0
Something like this: B4X: Dim theText As String theText = QuestionTxt.Text theText = theText.Replace(" ", "_") ...