Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my ruby+mechanize(nokogiri) script I use this piece of code:

row.at_xpath('td[3]/div[1]/a/text()').to_s.strip

on a forum where the post title html looks like:

<a href="showthread.php?t=233891" >&lt;/body&gt; on Footer ?</a>

and I receive from xpath this string &lt;/body&gt; on Footer ?

I would like to get what I can see in the web browser </body> on Footer ?

How can I do that for all html escape characters/entities?

share|improve this question

1 Answer

up vote 1 down vote accepted

Please take a look this post, to unescape htmlentities

or

There is a ruby package called htmlentities

share|improve this answer
@S.Mark: I didn't know it was called entities (too). htmlentities works like a charm.Thank you. – Radek Jan 23 '10 at 6:36
You're welcome, Radek. – YOU Jan 23 '10 at 6:39

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.