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'm parsing HTML page with XPath and want to grab whole text of some specific paragraph, including text of links.

For example I have following paragraph:

<p class="main-content">
    This is sample paragraph with <a href="http://google.com">link</a> inside.
</p>

I need to get following text as result: "This is sample paragraph with link inside", however applying "//p[@class'main-content']/text()" gives me only "This is sample paragraph with inside".

Could you please assist? Thanks.

share|improve this question
The code is broken – you don't close the href attribute quotes. – lonesomeday Nov 9 '11 at 14:32
Thanks, corrected that typo. – Alexander Silachev Nov 9 '11 at 14:41

1 Answer

up vote 1 down vote accepted

To get the whole text content of a node, use the string function:

string(//p[@class="main-content"])

Note that this gets a string value. If you want text nodes (as returned by text()), you can do this. You need to search at all depths:

//p[@class="main-content"]//text()

This returns three text nodes: This is sample paragraph with, link and inside.

share|improve this answer
Thanks a lot, @lonesomeday. Works perfectly! – Alexander Silachev Nov 9 '11 at 15:10

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.