0
votes
2answers
115 views
Given this XML, is there an xpath that will give me the ‘test’ and ‘name’ values?
I need to get the value of the 'test' attribute in the xsl:when tag, and the 'name' attribute in the xsl:call-template tag. This xpath gets me pretty close:
..../xsl:template/xs …
1
vote
4answers
384 views
Can XPath return only nodes that have a child of X?
Is it possible to use XPath to select only the nodes that have a particular child elements? For example, from this XML I only want the elements in pets that have a child of 'bar'. So the resultin …
