I have this string for example
a$="toraj,tannaz,arash"
now how I can split three words
and put each other in new string ?
for example split toraj
and then split tannaz and also arash.
I saw split command but can not undrestand it ?
thanx
Printable View
I have this string for example
a$="toraj,tannaz,arash"
now how I can split three words
and put each other in new string ?
for example split toraj
and then split tannaz and also arash.
I saw split command but can not undrestand it ?
thanx
the split command takes your long string and chops it up and puts the small strings into a variant array, using the default delimiter of [space] unless you specify a different one.
you should declare the variant array like this:
Dim MyStrings() as Variant
(do not set the number of elements)
email me for more info.