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 9155383
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:35:01+00:00 2026-06-17T12:35:01+00:00

Possible Duplicate: Get link and href text from html doc with Nokogiri & Ruby?

  • 0

Possible Duplicate:
Get link and href text from html doc with Nokogiri & Ruby?

I’m getting the following Nokogiri output:

obj =  [#<Nokogiri::XML::Element:0x19b1418 name="a" attributes=[#<Nokogiri::XML::Attr:0x123dd44 name="href" value="http://sample.com">] children=[#<Nokogiri::XML::Element:0x123c408 name="span" attributes=[#<Nokogiri::XML::Attr:0x1201f24 name="class" value="highlight">] children=[#<Nokogiri::XML::Text:0x1143b64 "Web">]>, #<Nokogiri::XML::Text:0x113a9c4 "Sample Text">]>]

How can I get the value "http://sample.com"? I tried obj.attributes("value") but had no luck.

I appreciate any help.

I’m using:

  • rails 3.2.x
  • nokogiri
  • 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-06-17T12:35:02+00:00Added an answer on June 17, 2026 at 12:35 pm

    You’re almost done:

    require 'nokogiri'
    
    doc = Nokogiri::HTML(<<EOT)
    <a href="http://sample.com">
    <span class="highlight">Web</span>
    </a>
    Sample text
    EOT
    obj = doc.search('a')
    
    obj.first['href']
    => "http://sample.com"
    

    If there’s only one <a> tag in the document, you could simplify the code using at:

    obj = doc.at('a')['href']
    

    would return the same value.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Get file name from URI string in C# How to extract file
Possible Duplicate: Get all files from VSS for a given date? I need to
Possible Duplicate: Undefined Symbol ___gxx_personality_v0 on link I have a problem with the following
Possible Duplicate: php/html - http_referer I want to find which page/script get request to
Possible Duplicate: Data transfer from JavaScript to PHP. How can i get the browser's
Possible Duplicate: How do I get this CSS text-decoration issue to work? I'm using
Possible Duplicate: Based on date, get todays and the next two days values from
Possible Duplicate: How to get products from a particular category in magento ecommerce I
Possible Duplicate: How to get Url Hash (#) from server side I'm having some
Possible Duplicate: Javascript DOM errors I have my following html code: <html> <head> </head>

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.