Results 1 to 3 of 3

Thread: $ p L | T - f U N c T | 0 n ???

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Oct 1999
    Location
    chicago (hope)
    Posts
    146

    Smile

    hi again!

    how to use the split funciton?

    please some example code, b'coz the msdn doesn't have one...

    thanx


  2. #2
    Fanatic Member
    Join Date
    Mar 2000
    Location
    That posh bit of England known as Buckinghamshire
    Posts
    658
    To use the split function you need an array of strings and a string to split.

    The following code will take myString and split it where there is a space. This produces three strings in myStringArray.

    Code:
        Dim myStringArray() As String
        Dim myString As String
        
        myString = "Hello Out There"
        myStringArray = Split(myString, " ")
    Iain, thats with an i by the way!

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Oct 1999
    Location
    chicago (hope)
    Posts
    146

    Wink !

    thanx

    now it worx

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