Ive got a string of HTML code filled with tags and special characters, for example:
<p class="MsoNormal"><span style="font-size: 14pt; font-family: TimesNewRoman;"> I Just want this Text here?<o:p></o:p></span></p>
or
<div>This is more text i would like. :( </div><div>&nbsp;</div>
Im just wondering if there is any way to extract the text from the html strings. I have tried to use some regex to replace strings but it didnt seem like the bay way to do it. Have also tried JSoup but didnt have much luck with that.
Any ideas? Regards.