DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Extracting Data From Very Large XML Files With X-definition
  • What Is Ant, Really?
  • Beyond Algorithms: The Human Element in AI-Driven Cybersecurity
  • Exploring Intercooler.js: Simplify AJAX With HTML Attributes

Trending

  • Feature Flag Debt: Performance Impact in Enterprise Applications
  • A System Cannot Protect What It Does Not Understand
  • Multi-Scale Feature Learning in CNN and U-Net Architectures
  • The Agentic Agile Office: Streamlining Enterprise Agile With Autonomous AI Agents

Finding Elements By Attributes With Nokogiri

By 
Lance Pollard user avatar
Lance Pollard
·
Sep. 29, 09 · Code Snippet
Likes (0)
Comment
Save
Tweet
Share
9.8K Views

Join the DZone community and get the full member experience.

Join For Free
To find elements by attribute with nokogiri, no matter where the element/attribute is, use these:


@doc = Nokogiri::XML(File.open("myFile.xml").read)
# get elements with attribute:
elements = @doc.xpath("//*[@*[attribute_name]]")
# get just the attribute:
attributes = @doc.xpath("//@*[attribute_name]")


If you want them with a specific namespace, do this:


# get elements with attributes from a given namespace:
elements = @doc.xpath("//*[@*[namespace-uri()='http://foo.example.com']]")
# get attributes from a given namespace:
attributes = @doc.xpath("//@*[namespace-uri()='http://foo.example.com']")
Attribute (computing) Element

Opinions expressed by DZone contributors are their own.

Related

  • Extracting Data From Very Large XML Files With X-definition
  • What Is Ant, Really?
  • Beyond Algorithms: The Human Element in AI-Driven Cybersecurity
  • Exploring Intercooler.js: Simplify AJAX With HTML Attributes

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook