从img标签获取src属性

发布于 2024-10-10 08:58:05 字数 214 浏览 5 评论 0原文

我正在使用 HAP 库来解析 HTML: http://html-agility-pack.net

我基本上只是想从所有 img 标签中检索 src 值。

我已经尝试了几件事,但我似乎做不到!

I'm using the HAP library to parse HTML: http://html-agility-pack.net

I basically just want to retrieve the src value from all the img tags.

I've tried several thing but I can't seem to do it!

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

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

发布评论

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

评论(2

失而复得 2024-10-17 08:58:05

从示例页面修改:

HtmlDocument doc = new HtmlDocument();
doc.Load("file.htm"); //or whatever HTML file you have
HtmlNodeCollection imgs = doc.DocumentNode.SelectNodes("//img[@src]");
if (imgs == null)
   return;
foreach (HtmlNode img in imgs)
{
   if (img.Attributes["src"] == null)
      continue;
   HtmlAttribute src = img.Attributes["src"];
   //Do something with src.Value
}

Modified from the examples page:

HtmlDocument doc = new HtmlDocument();
doc.Load("file.htm"); //or whatever HTML file you have
HtmlNodeCollection imgs = doc.DocumentNode.SelectNodes("//img[@src]");
if (imgs == null)
   return;
foreach (HtmlNode img in imgs)
{
   if (img.Attributes["src"] == null)
      continue;
   HtmlAttribute src = img.Attributes["src"];
   //Do something with src.Value
}
南七夏 2024-10-17 08:58:05

你有没有尝试过这样的事情:

HtmlNodeCollection images = doc.DocumentNode.SelectNodes("//img[@src]");

Did you try something like this:

HtmlNodeCollection images = doc.DocumentNode.SelectNodes("//img[@src]");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文