我使用Jsoup截取网页,但它给了我一些我不需要的信息,有没有办法在java中的元素中使用某种正则表达式?
我明白了
< span id =“lblRefSellMsg”>¢559.41< / span> (避免<>之间的空格空格)
我需要的信息是
559.41
最后我的代码看起来像这样
public class dato {
public static void main(String [] args) throws IOException{
String tasa = null;
Document d = Jsoup.connect("http://indi-eco.appspot.com/tcd").timeout(6000).get();
Elements ele= d.select("span#lblRefSellMsg");
System.out.print(ele);
答案 0 :(得分:2)
在text()
或Element
对象上调用Elements
方法:
System.out.print(ele.text());