vote up 1 vote down star
</div>
apple
<br>
banana
<br/>
watermelon
<br>
orange

Assuming the above, how is it possible to use Xpath to grab each fruit ? Must use xpath of some sort.

should i use substring-after(following-sibling...) ?

EDIT: I am using Nokogiri parser.

flag
Do you really mean <br/>, or did you mean </br>? (The former is a self-closing element, the latter is a close tag.) – Laurence Gonsalves Sep 28 at 3:57
yes <br / >...... – asdfasdfa Sep 28 at 4:02
There is no </br> AFAIK, Most ppl use <BR> and <BR/> – khelll Sep 28 at 4:04
i am using nokogiri....is it possible to get the frutis ? – asdfasdfa Sep 28 at 4:05

3 Answers

vote up 3 vote down

Well, you could use "//br/text()", but that will return all the text-nodes inside the <br> tags. But since the above isn't well-formed xml I'm not sure how you are going to use xpath on it. Regex is usually a poor choice for html, but there are html (not xhtml) parsers available. I hesitate to suggest one for ruby simply because that isn't "my area" and I'd just be googling...

link|flag
i am using nokogiri. – asdfasdfa Sep 28 at 4:02
vote up 1 vote down

There are several issues here:

  1. XPath works on XML - you have HTML which is not XML (basically, the tags don't match so an XML parser will throw an exception when you give it that text)

  2. XPath normally also works by finding the attributes inside tags. Seeing as your <br> tags don't actually contain the text, they're just in-between it, this will also prove difficult

Because of this, what you probably want to do is use XPath (or similar) to get the contents of the div, and then split the string based on <br> occurrences.

As you've tagged this question with ruby, I'd suggest looking into hpricot, as it's a really nice and fast HTML (and XML) parsing library, which should be much more useful than mucking around with XPath

link|flag
yes. i am using Nokogiri html parsing library. i guess exploding is the best working solution here. – asdfasdfa Sep 28 at 4:07
vote up 1 vote down

Try the following, which gets all text siblings of <br> tags as array of strings stripped from trailing and leading whitespaces:

require 'rubygems'
reguire 'nokogiri'

doc = Nokogiri::HTML(DATA)

fruits =
  doc.xpath('//br/following-sibling::text()
           | //br/preceding-sibling::text()').map do |fruit| fruit.to_s.strip end

puts fruits

__END__
</div>
apple
<br>
banana
<br/>
watermelon
<br>
orange

Is this what you want?

link|flag

Your Answer

Get an OpenID
or

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