I am trying to turn the results of 2 strings from:
<string1>A,B,C</string1>
<string2>1,2,3</string2>
to
<result1>
<value1>A</value1>
<value1>1</value1>
</result1>
<result2>
<value1>B</value1>
<value1>2</value1>
</result2>
<result3>
<value1>C</value1>
<value1>3</value1>
</result3>
I can tokenize each string to separate each value but I have a problem then combining the results
i.e the first result in string1 needs to be paired with the first result in string2, the second result in string2 needs to be paired with the second result in string 2 and so on. Any help would be much appreciated