I have some XML that looks like this:
<container>
<type>01</type>
<text>one</text>
</container>
<container>
<type>02</type>
<text>two</text>
</container>
EDIT the order of the containers isn't fixed.
I'm using xPath (through ruby's nokogiri) to choose text from this document. I want to be able to take the text in the container with a type of 02, but take the text from the container with a type of 01 if that doesn't exist.
I can do
/container/type[text() = "02" or text() = "01"]/parent::container
Which will get me both elements, then I can use some ruby to sort and take the right one (as this would return the 01 element first), but this feels clumsy.
I've search stackoverflow and there's nothing immediately apparent which allows me to sort element output with simple xpath, but is there a way to command xpath to take an element, but fallback to another if it doesn't exist?
Cheers!