gpt4 book ai didi

java - 如何从字符串标签中提取url和标签?

转载 作者:行者123 更新时间:2023-12-01 23:38:14 26 4
gpt4 key购买 nike

我有一个列表 <a>字符串格式的标签<a href="http://example.com">Example</a> 。提取网址 http://example.com 的最佳方式是什么?和标签 Example从这个字符串。目前我使用 substring 方法来识别边界并获取 url 和标签。但是使用正则表达式有更好的方法吗?

最佳答案

您想查看JSoup从 html 中提取值。

他们提供的示例几乎正是您想要的 here

Document doc = Jsoup.connect("http://jsoup.org").get();

Element link = doc.select("a").first();
String relHref = link.attr("href"); // == "/"
String absHref = link.attr("abs:href"); // "http://jsoup.org/"

关于java - 如何从字符串<a>标签中提取url和标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18330222/

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