This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: XPath Question


> 
> Suppose I have this XML:
> 
> <nodes>
> <node id="1" parent="0"/>
> <node id="2" parent="1"/>
> <node id="3" parent="2"/>
> </nodes>
> 
> So, node 2 is the child of node 1, node 3 is the child of node 2.
> 
> If I want to find the children of node 1 I believe I would write:
> /nodes/node[@parent='1']
> 
> But how do I write an XPath to select all the nodes that are 
> grandchildren
> of node 1?
> 
/nodes/node[@parent = /nodes/node[@parent='1']/@id]

Mike Kay 

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]