作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个列表 <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/
我是一名优秀的程序员,十分优秀!