|
-
Jan 6th, 2003, 03:25 PM
#1
Thread Starter
Addicted Member
dividing a string
How do I divide a string, strData, that contains the information "str1|str2|str3|str4" so that each string of information in between the "|" gets assigned its own string?
-
Jan 6th, 2003, 03:27 PM
#2
PowerPoster
use the split function --- look it up in the online help
-
Jan 6th, 2003, 03:51 PM
#3
Dim strParts() As String
strParts = Split(MyString,"|")
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
|