situation:
I have a txtbox that will have several words inputed by the user
Problem:
I know how to find the first space(" ")inbetwn the first two words, how can I find the rest of them so that I can evaluate each word seperately?
:eek:
Printable View
situation:
I have a txtbox that will have several words inputed by the user
Problem:
I know how to find the first space(" ")inbetwn the first two words, how can I find the rest of them so that I can evaluate each word seperately?
:eek:
You can use the Split function, or step through the string character by character in a loop looking for a space, or use Mid$ in a loop, using the first found space as the starting position of the next loop, etc.