Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6599353
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:28:49+00:00 2026-05-25T18:28:49+00:00

I have been trying to find specific enough example on how to proceed. I

  • 0

I have been trying to find specific enough example on how to proceed. I am creating xml file with Builder for export/import use. I am exporting this file from app and when importing I want to create new records to database based on this xml file. With relations between models intact.

I have category with several questions, each question has several answers which might trigger one or more further questions.

I made simplified version of my xml file: https://gist.github.com/1225431

As I am doing it by myself, I am also open to suggestions if I should prepare that xml file differently.

questions = doc.css('questions')

This is where I am now, so right at the beginning. All the examples I have found have been for totally different kind of problems (or so I feel).

Am I even using right tool for this job? Any help appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T18:28:50+00:00Added an answer on May 25, 2026 at 6:28 pm

    Nokogiri is a great XML/HTML parsing library for Ruby, so you’re definitely using the right tool for the job. Since you’re parsing an XML document, you ought to use XPath instead of CSS selectors. Fortunately, Nokogiri has you covered.

    The Nokogiri documentation has a few basic, helpful usage tutorials. This one answers your question.

    Here is a code example specific to your question. Hopefully this is enough to get you started:

    require 'nokogiri'
    
    # Reads the `example.xml` file from the current directory.
    file    = File.read("example.xml")
    
    # Uses Nokogiri::XML to parse the file.
    doc     = Nokogiri::XML(file)
    
    # Iterate over each <question> element and print 
    # the text inside the first <name> element of each.
    doc.xpath("//question").each do |q|
        puts q.at("name").text
    
        # Iterate over each <selection> element within the
        # current question and print its <name> and <conditional> 
        # line "name: conditional"
        q.xpath("./selection").each do |selection|
            puts "#{selection.at("name").text}: #{selection.at("conditional").text}"
        end
    
        # Same as above, but use variables.
        q.xpath("./selection").each do |selection|
            name                = selection.at("name").text
            conditional = selection.at("conditional").text
    
            puts "#{name}: #{conditional}"
        end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been trying to find ways to save Datetime specific to Arabian Standard
I have been trying to find a really fast way to parse yyyy-mm-dd [hh:mm:ss]
I have been trying to find information on how to retrieve attachments from a
I have been trying to find a code snippet to do an unsharp mask
I have been trying to find out why the following lines of code do
I have been trying to find some resource on this topic for a while
I have been trying to find decent Image Acquisition + Image Processing solution at
I have been trying to find a good guide to create a templated control.
I have been trying to find out what the difference is between the IS
I have been trying to find some step by step guidance on how to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.