I have the following HTML code:
<div class=example>Text #1</div> "Another Text 1"
<div class=example>Text #2</div> "Another Text 2"
I want to extract the Text outside the tag, "Another Text 1" and "Another Text 2"
I'm using JSoup to achieve this.
Any ideas???
Thanks!