We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
# Standard ruby library for XML parsingrequire'rexml/document'includeREXML# Enter your code here. Read input from STDIN. Print output to STDOUTxmlText=""# Read the input XML Fragmentwhileline=gets()xmlText+=lineenddoc=Document.newxmlText#XPath selector for picking up the popularity of the movie with the title "Trigun"putsdoc.elements["collection/movie[@title='Trigun']/popularity/text()"]
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Querying XML Datastores with XPath - 4
You are viewing a single comment's thread. Return to all comments →