Forum Discussion
Buschfunk
15 years agoFrequent Contributor
Maybe you could use an XPath expression to get the specific child and then transfer this?
Example:
To get the 2nd child you could use the following expression:
Does that help?
Example:
<root>
<child>Child 1</child>
<child>Child 2</child>
<child>Child 3</child>
</root>
To get the 2nd child you could use the following expression:
/root/child[2]
Does that help?