gpt4 book ai didi

c# - 字符串到 HtmlDocument

转载 作者:IT王子 更新时间:2023-10-29 04:13:25 26 4
gpt4 key购买 nike

我正在使用 WebClient.DownloadString(url) 通过 URL 获取 html 文档,但是很难找到我要查找的元素内容。在四处阅读的过程中,我发现了 HtmlDocument,它有一些简洁的东西,比如 GetElementById。如何使用 url 返回的 html 填充 HtmlDocument

最佳答案

使用 Html 敏捷包 as suggested by SLaks ,这变得非常容易:

string html = webClient.DownloadString(url);
var doc = new HtmlDocument();
doc.LoadHtml(html);

HtmlNode specificNode = doc.GetElementById("nodeId");
HtmlNodeCollection nodesMatchingXPath = doc.DocumentNode.SelectNodes("x/path/nodes");

关于c# - 字符串到 HtmlDocument,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4935446/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com