Jsoup解析
<li><a href="http://www.3dmgame.com/zt/201203/44088.html" target="_blank">
3.27 激情不再 消费者对新iPad完全没兴趣的六大原因
</a></li>
怎么样解析能去掉"3.27 ",解析完之后只有“激情不再 消费者对新iPad完全没兴趣的六大原因”
[解决办法]
System.out.print(doc.getElementsByTag("a").text().replace(Jsoup.parse(" ").text(), " "));
这样能去掉空格
System.out.print(doc.getElementsByTag("a").text().replace(Jsoup.parse("3.27 ").text(), " "));
这样全去掉了