I have a string that I need to parse based on the number of elements.
Using the string....
string="a,abc,car,bread,number,the,word,world,never,before"
I would want to parse the string into three items per parsed string, then display.
the end result would be....
msgbox("a,abc,car")
msgbox("bread,number,the")
msgbox("word,world,never")
msgbox("before")
How can I do this? I looked at the split function, but I'm not sure how that loop function would work, or if there is a better method. PLEASE HELP!
Using the string....
string="a,abc,car,bread,number,the,word,world,never,before"
I would want to parse the string into three items per parsed string, then display.
the end result would be....
msgbox("a,abc,car")
msgbox("bread,number,the")
msgbox("word,world,never")
msgbox("before")
How can I do this? I looked at the split function, but I'm not sure how that loop function would work, or if there is a better method. PLEASE HELP!