tags:

views:

153

answers:

1

consider this

List of Alcohol
Beer
<br>
Vodka
<br>
rum
<br>
whiskey

how would you express Beer in xpath ?

/br/preceding-sibling::text() ?

what about vodka ? rum ?

+3  A: 

Depends on the context. Ideally, to be well-formed XML, your sequence needs a root element. Let's say it's <bar/>.

Beer: /bar/br[1]/preceding-sibling::text()[1]

Vodka: /bar/br[1]/following-sibling::text()[1]

Rum: /bar/br[2]/following-sibling::text()[1]

James Sulak
where can i add the normalize-space function ?
pingu