I would like strip certain characters out of a string. I can do this easily for one character.
But what if I want to replace more than one character (a list of characters)? Should I do this...
Or perhaps loop through somehow? I guess I'm asking for the best way to do this.
Thanks.
Code:
Dim a as string
a = txtName.text.replace("*","")
Code:
Dim a as string
a = txtName.text.replace("*","").replace("#","")...
Or perhaps loop through somehow? I guess I'm asking for the best way to do this.
Thanks.