J
john
I have a string separated by commas like this:
I,am,Sam,he,is,Tom,She,is,Mary
How do I split this string into individual string values(the separation
parameter being the comma). In short, I want the result to be:
string1 = I
string2 = am
string3= Sam
string4= he
etc.
thanks
Newbie her
I,am,Sam,he,is,Tom,She,is,Mary
How do I split this string into individual string values(the separation
parameter being the comma). In short, I want the result to be:
string1 = I
string2 = am
string3= Sam
string4= he
etc.
thanks
Newbie her