Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: a_vaitsosI am stuck with a rather trivial problem. I have a row of data separated by commas and I want to expand each one into columns.
For instance, my input is of the form:
Data: string
abcd,efgh,ijkl,mnop,qrst
And the required result should be in the form:
Counter: intger, Data:string
1, adcd
2, efgh
3, ijkl
4, mnop
5, qrst
Can someone help me with this?
Thanks,
Alex