|
-
November 30th, 2000, 07:21 AM
#1
quick question on strings!
Hello,
I'm new to VB, can anyone tell me if there is an equivalent to the
sscanf()
C function???
I need to process a string that is in a specific format. It is comma separated and I need to extract the values from between the commas and store them in variables.
Thanks,
D.
-
November 30th, 2000, 07:27 AM
#2
Re: quick question on strings!
You can use the split function in VB6 to store the elements in an array
-
November 30th, 2000, 11:34 AM
#3
Re: quick question on strings!
You can use the instr() function to find the commas and then the mid() function to get the stuff in between the commas and put them in a variable.
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
|