Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an XML that looks like this:

<data>
  <image src="http://www.someweb.com/something.png"/>
</data>

What is the correct way to use hpricot to extact just 'http://www.someweb.com/something.png'? The closest I can get is this...

>>(doc/"image").first
=> {emptyelem <image src="http://www.someweb.com/something.png">}

I've read the hpricot README on github and googled, but haven't found anything yet. Thanks in advance for any answers!

share|improve this question

1 Answer

(doc/'data image').first.attributes['src']
share|improve this answer
It's pretty low for an admin to delete your own comment, and mine in the process, because it would shed some light why a valid answer has been downvoted. – vise Aug 23 '12 at 4:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.