I'm parsing html of a website with JSoup
. I want to parse this part:
<td class="lastpost">
This is a text 1<br>
<a href="post/13594">Website Page - 1</a>
</td>
I want like this:
String text = "This is a text 1";
String textNo = "Website Page - 1";
String link = "post/13594";
How can I get the parts like this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…