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="movies.xml"# Read the input XML Fragmentwhileline=gets()xmlText+=lineenddoc=Document.newxmlText# XPath Selector for listing the titles of the movies, in the same order as which they occur in the given XML.# Fill in the blanks to complete the required XPath selector queryputsdoc.elements.each("collection/movie/@title")
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 - 1
You are viewing a single comment's thread. Return to all comments →