Quote Originally Posted by Alsvha View Post
Use Regular Expression to strip the numbers out of the text. If you need the numbers as well, you can just use different groups to capture them.

For example:
Code:
Dim Mystring As String = "1234, this, is, text,5678"
Dim regEx As New Regex("\d+")
Dim Mystring2 As String = regEx.Replace(Mystring, "")
Mystring2 will then contain ", this, is, text" and can be split and trimmed.
Oooh, this one is going to take some thinking about.