View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Tommy T Tommy T is offline
external usenet poster
 
Posts: 9
Default Break string into words

Thanks, that's exactly what I was looking for.
-----Original Message-----
The VB "split" function will return a one dimensional

array of substrings
and the default delimter is the space character. You

can then check the
size of the array and deal with the substrings however

you wish.

Steve


"Tommy T" wrote in

message
...
Hey guys,
I'm looking to extract some info from textboxes on a
userform. The info could be 1-4 words. Is there a

way I
can break a string of 4 words into 4 separate

strings? I
know with Excel functions I could use Search to find

the
spaces and then try to go from there, but is there a
better way?

Thanks,
TT



.