This will break your string up into individual character and put them into an
array. If you have a 70 char string, you will get arr.length=70 but if you
have a 60 char string, you will get arr.length = 60. Not sure if this is
what you wanted.
Dim str As String = "012wxyz789"
Dim arr() As Char
arr = str.ToCharArray(3, 4)
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.