If I have XML like:
<foo> <bar id="1" score="192" /> <bar id="2" score="227" /> <bar id="3" score="105" /> ... </foo>
Can I use XPath to find the minimum and maximum values of score
?
Edit: The tool i'm using (Andariel ant tasks) doesn't support the XPath 2.0 solution.
Definition of XPath attribute. For finding an XPath node in an XML document, use the XPath Attribute expression location path. We can use XPath to generate attribute expressions to locate nodes in an XML document.
Single Slash “/” – Single slash is used to create Xpath with absolute path i.e. the xpath would be created to start selection from the document node/start node.
Here's a slightly shorter solution.
Maximum:
/foo/bar/@score[not(. < ../../bar/@score)][1]
Minimum:
/foo/bar/@score[not(. > ../../bar/@score)][1]
I've edited the predicate so that it's applicable to any sequence of bar
, even if you decide to change the path. Note that parent of attribute is the element to which it belongs.
If embedding these queries in XML files like XSLT or ant scripts, remember to encode <
and >
as <
respecting >
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With