Jsoup解析,该如何解决

Jsoup解析lia hrefhttp://www.3dmgame.com/zt/201203/44088.html target_blank3.27 激情不再 消

Jsoup解析
<li><a href="http://www.3dmgame.com/zt/201203/44088.html" target="_blank">
  3.27&nbsp;激情不再 消费者对新iPad完全没兴趣的六大原因
  </a></li>
怎么样解析能去掉"3.27&nbsp;",解析完之后只有“激情不再 消费者对新iPad完全没兴趣的六大原因”

[解决办法]
System.out.print(doc.getElementsByTag("a").text().replace(Jsoup.parse("&nbsp;").text(), " "));
这样能去掉空格

System.out.print(doc.getElementsByTag("a").text().replace(Jsoup.parse("3.27&nbsp;").text(), " "));
这样全去掉了