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.
Re: quick question on strings!
You can use the split function in VB6 to store the elements in an array
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.