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.
hrefattribute quotes. – lonesomeday Nov 9 '11 at 14:32