Hi all,
I am no good at this whole xpath query thing. I have an Xml Structure like this
My query should look something like this:
Select child where parent type =a
Is that possible with xPath?
Something like //parent @type ='a' / child ?
Thanks for your support!
Stephan
I am no good at this whole xpath query thing. I have an Xml Structure like this
Code:
<Root>
<parent type ="a">
<child>texta</child>
</parent>
<parent type ="b">
<child>textb</child>
</parent>
</Root>
My query should look something like this:
Select child where parent type =a
Is that possible with xPath?
Something like //parent @type ='a' / child ?
Thanks for your support!
Stephan