|
-
Jun 3rd, 2003, 01:56 PM
#1
Thread Starter
Lively Member
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
Last edited by Iamthewalrus15; Jun 3rd, 2003 at 02:07 PM.
-
Jun 3rd, 2003, 02:01 PM
#2
What is String32? I find no reference of any such class in .NET.
-
Jun 3rd, 2003, 02:09 PM
#3
Thread Starter
Lively Member
string32 is the big name for string
-
Jun 3rd, 2003, 02:20 PM
#4
oh..So you fixed it though?
-
Jun 3rd, 2003, 02:40 PM
#5
Thread Starter
Lively Member
yes see my edit of my original message.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|