java - 如何用正则提取html内容
问题描述
<p class='info-detail-head-classify-subname'><a href='https://www.haobala.com/wenda/11492.html' target='_blank'>财富</a></p> 想用java 提取财富两个字 请问用正则怎么提取 用jsoup会不会简单一点
问题解答
回答1:可以使用jsoup和regex, 推荐使用jsoup!jsoup document:https://jsoup.org/cookbook/in...http://www.open-open.com/jsoup/
import org.jsoup.Jsoup; import org.jsoup.nodes.Document; import org.jsoup.nodes.Element;import java.util.regex.Matcher; import java.util.regex.Pattern;public class Main { public static void main(String[] args) {// 方法1: jsoup String html = '<p class='info-detail-head-classify-subname'><a href='https://www.haobala.com/wenda/11492.html' target='_blank'>财富</a></p>';Document doc = Jsoup.parse(html); Element element = doc.getElementById('info_detail_head_classify_type'); System.out.println(element.text());// 方法2: regex Pattern r = Pattern.compile('<a.*>(.*)</a>'); Matcher m = r.matcher(html); if (m.find()) {System.out.println(m.group(1)); }} }回答2:
<a[^>]*>([^<]*)</a>
取<a></a>中的内容
相关文章:
1. javascript - 修改表单多选项时和后台同事配合的问题。2. javascript - H5页面怎么查看console信息?3. angular.js - angularjs 怎么封装 upload 上传4. dockerfile - [docker build image失败- npm install]5. javascript - 关于Js中 this的一道题6. mysql - 索引过滤性不好是由什么原因引起的,应该怎么解决7. mysql - 我的myeclipse一直连显示数据库连接失败,不知道为什么8. javascript - vue生成一维码?求助!!!!!急9. android - Listview模仿朋友圈点赞的TextView没有刷新?10. 网页爬虫 - Python:爬虫的中文编码问题?
