</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.
|
|
|
|
|
Well, you could use |
||
|
|
|
There are several issues here:
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 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 |
||
|
|
|
Try the following, which gets all text siblings of
Is this what you want? |
||
|
|
<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