Hi, I have an XML-File which I read with flattening. Part of the XML structure is something like:
<element>
<points>
<startPoint>
<value1></value1>
<value2></value2>
</startPoint>
<middlePoint>
<value1></value1>
<value2></value2>
</middlePoint>
<endPoint>
<value1></value1>
<value2></value2>
</endPoint>
</points>
</element>
StartPoint and Endpoint must occur once, middlepoint can occur many times. I have to transform this in a structure like:
<element>
<newpoints>
<pointNumber>
<value1></value1>
<value2></value2>
</newpoints>
</element>
Obviously newpoints must occur at least twice. Any Suggestion how to combine those points with different attribute-names into the newpoints?
Thanks!