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.

I have a HTML which contains some tags like below:

<div id="SNT">text1</div>
<div id="SNT">text2</div>
<div id="SNT"><span style='color: #EFFFFF'>text3</span></div>
<div id="SNT"><span style='color: #EFFFFF'>text4</span></div>

how can I get all the texts included in all <div> tags using XPath?

i.e.:

text1  
text2  
text3  
text4   
share|improve this question
What's the host language you use XPath with? I think you simply want to select the div elements and then take their string contents, how you do that depends on the host language and tree model, e.g. in the browser DOM you might access the textContent property (or innerText with older IE). – Martin Honnen Jun 4 '12 at 13:21

1 Answer

up vote 1 down vote accepted

Use:

//div[@id='SNT']//text()

This selects any text node that is a descendent of any div element in the XML document, that has an id attribute with string value the string "SNT".

If you want to excclude the whitespace-only text nodes from this selection, use:

//div[@id='SNT']//text()[normalize-space()]

This is similar to the first XPath expression, but now each selected text node must have an additional predicate satisfied -- that the value of the normalize-space() function upon its string contents is a non-empty string.

The value of the normalize-space() function is the empty string only when its argument is the empty string itself, or a string comprised of whitespace-only characters (space, NL, CR and Tab).

share|improve this answer
thanks, but this will return one additional empty strings for any div tag which includes an span I'm afraid. – MBZ Jun 4 '12 at 13:18
@MBZ: I have updated this answer with another XPath expression that selects only non-whitespace-only text nodes. – Dimitre Novatchev Jun 4 '12 at 13:22
That's it, thanks :) – MBZ Jun 4 '12 at 13:25
@MBZ: You are welcome. – Dimitre Novatchev Jun 4 '12 at 13:29

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.