从 html 字符串中提取数据的库
有没有免费/开源的 C# 库可以从 html 中提取数据?
鉴于下面的输入,
<div style="...">
text part 1
</div>
<div style="...">
text part 2
</div>
我希望输出为:
text part 1 text part 2
Is there any free/open source c# libraries to extract data from html?
Given the input below
<div style="...">
text part 1
</div>
<div style="...">
text part 2
</div>
I want the output to be:
text part 1 text part 2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用 HtmlAgilityPack 使用 Xpath 查询来解析 HTML,就好像它是 XML 一样。
Yes, you can use HtmlAgilityPack to parse HTML using Xpath queries as if it were XML.
您可以使用 HtmlAgilitiPack 非常好的库。
进而:
you can use HtmlAgilitiPack very good library.
and then: