I'm doing an application on Android.
I have the content of a web (all the HTML) in a String, and i need extract all the text inside the paragraphs (p elements) with the class="content".
Example:
<p class="content">La la la</p>
<p class="another">Le le le</p>
<p class="content">Li li li</p>
Result:
La la la
Li li li
What is the best approach to do this?