使用 HTMLAgilityPack 解析并非来自 URL 的 HTML 字符串

发布于 2024-11-27 10:09:23 字数 196 浏览 1 评论 0原文

我正在尝试获取通过 vb.net 代码标记的字符串,并将其与最初来自的文本文件进行交叉检查。这是为了校对 html 输出。

为此,我需要解析不是来自 URL 的 HTML 片段。

我见过的 HTMLAgilityPack 示例从 URL 获取输入。有没有一种方法可以解析不包含标题或格式良好的网页的类似部分的标记文本字符串?

谢谢

I am trying to take a string that I have marked up through vb.net code and cross-check it with the text file it came from originally. This is for proofreading the html output.

To do this, I need to parse an HTML snippet that does not come from a URL.

The examples of HTMLAgilityPack I have seen get their input from a URL. Is there a way to parse a string of marked-up text that does not include a header or similar parts of a well-formed webpage?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

与君绝 2024-12-04 10:09:24

要解析包含 HTML 片段而不是文件或 URL 的字符串,您可以按照 @Oded 的建议使用 HtmlDocument,但不要使用 doc.Load(),而是使用 doc.LoadHtml()。

String HtmlSnippet = "<p>Example <strong>Html</strong> snippet</p>";
HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(HtmlSnippet);

To parse a string containing an HTML snippet rather than a file or URL, you can use the HtmlDocument as @Oded suggested, but instead of using doc.Load(), use doc.LoadHtml().

String HtmlSnippet = "<p>Example <strong>Html</strong> snippet</p>";
HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(HtmlSnippet);
酒与心事 2024-12-04 10:09:24

使用 HtmlDocument 代替 WebDocument

HtmlDocument doc = new HtmlDocument();
doc.Load("file.htm");

它是 HAP 示例页面

Instead of the WebDocument use HtmlDocument:

HtmlDocument doc = new HtmlDocument();
doc.Load("file.htm");

It is the first thing on the HAP examples page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文