Results 1 to 5 of 5

Thread: string32.split SOLVED

Threaded View

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Oct 2002
    Posts
    67

    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width