So I'm stuck on an issue while parsing a forum, I want to ignore the quotes and only read the message from the posted user. So ..
Imagine I have this HTML loaded.
<div class="main">
<div class="quote">
Some stuff written here ..
</div>
More written here and a <b>bold word</b> or two.
</div>So, what I want to return is:
More written here and a bold word or two.Which is returned when I evaluate the path, but it also returns what's in the quote and I ain't sure how to ignore that. Using /text() will ignore the bolded words in this example.
Thanks for any help.