我想删除以http://goo.gl开头的链接href属性为https://goo.gl。
以下是我的代码,但它并非完全没有错误消息。
我不知道该怎么办。请帮帮我。
public class NewClass {
public static void main(String[] args) {
try {
Document connect = Jsoup.connect("http://blogtamsu.vn/ngoc-trinh-duoc-goi-la-hinh-mau-bao-hieu-tot-doi-dep-dao.html").get();
Elements selects = connect.select("div.remain_detail");
String levels = "a[href^=http://goo.gl],a[href^=https://goo.gl]";
for (String level : levels.split(",")) {
selects.remove(level);
}
System.out.println(Jsoup.clean(selects.html(), Whitelist.relaxed()));
} catch (IOException ex) {
Logger.getLogger(NewClass.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
答案 0 :(得分:3)
使用regex
选择并从selects
中删除:
selects.select("a[href~=(http|https)://goo.gl]").remove()