If I have the following string:
< asd="testJava"><a href="/title/text/">BLA BLA <asddead>
How can I get only the string BLA BLA.
I tried split but it removes me all the chars, I need to remove only those from ">" to "<".
Once I get the string, I'm gonna add it to an ArrayList with array.add();
Can someone help me with the code that removes the strings?
Thank you!