I have the following values in a StringList:
1111,2222
3333,4444
I have another String list with values
7777,8888
9999,0000
I need to add the values of the second stringlist, concatenating in the same position in sequence of the first Example:
1111,2222,7777,8888
3333,4444,9999,0000
How do I add the contents of the second array of data in the first?