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")...