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).
divelements 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 thetextContentproperty (orinnerTextwith older IE). – Martin Honnen Jun 4 '12 at 13:21