1
Vegetable 2020-06-24 15:54:30 +08:00
描述的太笼统了,什么技术栈啊?都绕不开你第二个方法的思路,xpath 什么的
|
2
jorneyr 2020-06-24 15:55:13 +08:00
直接用 jQuery 的选择器,用正则容易出错:
var $html = $(htmlContent); var target = $html(selector); |
3
duan602728596 2020-06-24 16:17:32 +08:00
jsdom:解析 html 字符串,然后可以使用部分 BOM 、DOM 的 api,对 html 进行操作,然后还可以重新生成 html 字符串
parse5:将 html 字符串解析成 ast 树,也可以根据 ast 树生成 html 字符串 cheerio:感觉没有 jsdom 好用 |
4
bigboNed3 2020-06-24 16:19:10 +08:00
python beautifulsoup
java jsoup 基本每个语言都会有对应的 soup |
5
fivesmallq 2020-06-24 16:30:36 +08:00
之前做爬虫的时候写的一个小工具。
https://github.com/fivesmallq/web-data-extractor Extracting and parsing structured data with jQuery Selector, XPath or JsonPath from common web format like HTML, XML and JSON. |
6
omph 2020-06-25 10:49:43 +08:00
|