J
JMan
Hi,
i have some xml that looks like this:
<parent>
<a>1,2,3,4,5,6,7,8</a>
<b>a,b,c,d,e,f,g,h</b>
</parent>
what i need i this:
<parent>
<ab>a 1 b 2 c 3 d 4 ...</ab>
</parent>
How can i do this? I thought of tokenizing the values of <a> and <b>
into sequences, but i dont know how to merge them together.
Does anybody has a solution to this problem?
cheers, Johannes
i have some xml that looks like this:
<parent>
<a>1,2,3,4,5,6,7,8</a>
<b>a,b,c,d,e,f,g,h</b>
</parent>
what i need i this:
<parent>
<ab>a 1 b 2 c 3 d 4 ...</ab>
</parent>
How can i do this? I thought of tokenizing the values of <a> and <b>
into sequences, but i dont know how to merge them together.
Does anybody has a solution to this problem?
cheers, Johannes