Sort by

recency

|

8 Discussions

|

  • + 0 comments
    # Standard ruby library for XML parsing
    require 'rexml/document'
    include REXML
    
    # Enter your code here. Read input from STDIN. Print output to STDOUT
    xmlText = "" 
    
    # Read the input XML Fragment
    while line = gets()
    	xmlText += line
    end
    
    doc = Document.new xmlText
    
    #XPath selector for picking up the popularity of the movie with the title "Trigun"
    puts doc.elements["collection/movie[@title='Trigun']/popularity/text()"]
    
  • + 0 comments

    puts doc.elements["collection/movie[@title='Trigun']/popularity/text()"]

  • + 0 comments

    I am always visiting this site and I always get new information! prayer to win court case

  • + 0 comments

    Here is Querying XML Datastores with XPath - 4 problem solution - https://www.gyangav.com/2022/11/hackerrank-querying-xml-datastores-with-xpath-4-problem-solution.html

  • + 0 comments

    "collection/movie[@title='Trigun']/popularity/text()"