Hello,
What I'm trying to do is fairly simple, but I can't find the way to. I just want to iterate over the children of a node excluding the first child.
For instance, in this XML snippet, I would want all the <bar>
elements, except the first one:
<foo>
<Bar>Example</Bar>
<Bar>This is an example</Bar>
<Bar>Another example</Bar>
<Bar>Bar</Bar>
</foo>
There is no common attribute by which I can filter (like an id
tag or something similar).
Any suggestions?