例如,我有HTML块:
<h2><a href="http://google.ru" style="text-decoration: underline;"><img src="http://any_image.jpg"/></a>some_text</h2>
我希望得到“some_text”这个词。如果我使用这样的代码:
Elements elements = doc.select("h2");
我将获得所有代码。求助,我是JSOUP的新手
答案 0 :(得分:1)
试试这个:
String text = doc.select("h2").first().text();