使用 Htmlagility pack 从 html 字符串中查找 div

发布于 2024-12-12 17:52:24 字数 94 浏览 0 评论 0原文

我有一个表,其中的一列保存了页面的所有 html。我想使用 htmlagility 从该 div 获取一个 div(及其内容),我该怎么做。我不想从网址加载它或进行屏幕抓取。

I have a table where in one column, I have saved all the html of a page. I want to fetch a div( and its contents) from that div using htmlagility how can I do this. I don't want to load it from url or do screen scraping.

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

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

发布评论

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

评论(2

止于盛夏 2024-12-19 17:52:24
// Load your html

HtmlDocument htmlDocument = new HtmlDocument();
htmlDocument.LoadHtml(html);
// Find div with an id or you could use a class if you want
var nodes = htmlDocument.DocumentNode.SelectNodes("//div[@id='myDivId']");
// Load your html

HtmlDocument htmlDocument = new HtmlDocument();
htmlDocument.LoadHtml(html);
// Find div with an id or you could use a class if you want
var nodes = htmlDocument.DocumentNode.SelectNodes("//div[@id='myDivId']");
情话墙 2024-12-19 17:52:24

我找到了这个解决方案。

 HtmlDocument doc = new HtmlDocument();
            doc.LoadHtml(@html);

            HtmlNodeCollection tableRows = doc.DocumentNode.SelectNodes("//tr");

            string content = "";
            if (tableRows.Count > 1)
            {
                HtmlNode node = doc.DocumentNode.SelectSingleNode("//div[@class='account-detail']");
               content = node.InnerHtml;
            }

感谢大家抽出时间。

I found this solution.

 HtmlDocument doc = new HtmlDocument();
            doc.LoadHtml(@html);

            HtmlNodeCollection tableRows = doc.DocumentNode.SelectNodes("//tr");

            string content = "";
            if (tableRows.Count > 1)
            {
                HtmlNode node = doc.DocumentNode.SelectSingleNode("//div[@class='account-detail']");
               content = node.InnerHtml;
            }

thank you all for your time.

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