-
string32.split SOLVED
heres a bit of a noob question. I've done this 100 times with regex and string builder, but i need to do it with string32 now.
i have mystring = "part1\part2" i need to split on the "\" and extract the word "part2" only the obvious doesnt work.
mystring.split("\") doesnt work, neither does the regex method of mystring.split("\\")
Help! :)
-------------
YA know I really hate it when i post a questiong after searching for an answer for a couple of hours then find it right after i post.
Dim myString As String = "Look at these!"
' Returns ["Look", "at", "these!"]
Dim myArray() As String = Split(myString)
for the records
-
What is String32? I find no reference of any such class in .NET.
-
string32 is the big name for string
-
oh..So you fixed it though?
-
yes see my edit of my original message. :)