gpt4 book ai didi

java - jsoup去除以href开头的链接href属性

转载 作者:行者123 更新时间:2023-11-30 08:07:03 25 4
gpt4 key购买 nike

我想删除以 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);
}
}
}

最佳答案

使用 regexselects 中选择和删除:

selects.select("a[href~=(http|https)://goo.gl]").remove()

关于java - jsoup去除以href开头的链接href属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33941329/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com