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

The output of what I'm scraping leaves me with this:

<li><img class="static" src="pic.jpg"><span id="dynamic1" class="the text">I like turtles</span></li>
<li><img class="static" src="pic.jpg"><span id="dynamic2" class="the text">I like bears</span></li>
<li><img class="static" src="pic.jpg"><span id="dynamic3" class="the text">I like ruby</span></li>
<li><img class="static" src="pic.jpg"><span id="dynamic4" class="the text">I like oranges</span></li>
<li><img class="static" src="pic.jpg"><span id="dynamic5" class="the text">I like keyboards</span></li>
<li><img class="static" src="pic.jpg"><span id="dynamic6" class="the text">I like movies</span></li>
<li><img class="static" src="pic.jpg"><span id="dynamic7" class="the text">I like Android</span></li>
<li><img class="static" src="pic.jpg"><span id="dynamic8" class="the text">I like Mac</span></li>
<li><img class="static" src="pic.jpg"><span id="dynamic9" class="the text">I like music</span></li>
<li><img class="static" src="pic.jpg"><span id="dynamic10" class="the text">I like boats</span></li>

There is about 100 lines of this with the span class being different each time, and the "I like turtles" part being different each time.

Ideally, I only want the "I like turtles" part of each line. Is there a way to get this?

Example 10 lines

share|improve this question
1  
There is a way; might help if you post 10 of those hundred lines as we can determine the right pattern... – Russ C Jun 2 '12 at 2:36
is it right to assume your span, regardless of the class, always follows (like in following-sibling) the img and is a child to the li? – Pavel Veller Jun 2 '12 at 2:38
10 lines added. – Stn Jun 2 '12 at 19:12

2 Answers

up vote 2 down vote accepted

If you end up with a bunch of HTML like this:

<ul>
    <li><img ...><span ...>I want this text</span></li>
    <li><img ...><span ...>I want this text</span></li>
    ...
</ul>

Then you can extract the <li>s and then extract the text from each <li> while ignoring the tags inside it:

texts_you_want = doc.css('li').map(&:text)

That will ignore the <img> and the <span> elements inside the <li>s and no one needs to care about what classes they happen to have.

share|improve this answer
Thanks so much. I'm going to have to read up on the map method. – Stn Jun 2 '12 at 19:20

Following "convention" from the answer with the doc.css().

Nokogiri allows you to run XPath on the result of Nokogiri::HTML as if it was a well formed XML:

text_you_want = doc.xpath("//li/span").map(&:text)

p.s. The reason I did // and not the root / is because if you parse your scraping leftovers with Nokogiri::HTML it will wrap it into the <html><body> for you. Writing the XPath to your fragment as /html/body/li/span looks kind of awkward :)

share|improve this answer
could you please explain how "map(&:text)" works in brief, or any pointers about it, "&:" seems interesting, how it works? it does not seem to be a standard operator, looks like a magic. – Amol Pujari Jun 2 '12 at 3:02
2  
@AmolPujari, google "symbol to proc". you will find and learn much more than I can say in a comment field. – Pavel Veller Jun 2 '12 at 3:23
1  
@AmolPujari: In short, x.map(&:m) is shorthand for x.map { |o| o.m }, it nicely removes the block and variable noise and allows you to get straight to the point. – mu is too short Jun 2 '12 at 6:51

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.