Not able to extract XML tag values.
Hi,
I want to extract XML tag values as per below. I have tried with FINS Industry XML Query Service, but it seems this BS doesn't evaluate complex notations as per Doc ID 503687.1. Are there any other ways to execute such notations other than script?
XPath Notation : ./*/*/lemonade[price=2]/amount
Expected Result : 20
XML :
<inventory>
<drink>
<lemonade>
<price>2</price>
<amount>20</amount>
</lemonade>
<coke>test</coke>
<pop>
<price>10</price>
<amount>10</amount>
</pop>
</drink>
<snack>
<chips>
<price>40</price>
<amount>60</amount>
<calories>180</calories>
</chips>
</snack>
</inventory>
Thanks,
Ravi