如何使用htmlagilitypack提取博客文章图像

如何使用htmlagilitypack提取博客文章图像

本文介绍了如何使用htmlagilitypack提取博客文章图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨!

我可以使用htmlagilitypack从网站中提取第一张图片。但我希望能够提取博客文章功能图像。我使用的是firstOrDefault,它给了我给定网址上的第一张图片。



请帮帮我。

谢谢。



我尝试过:



我尝试过使用Linq ElementAt(1)我得到索引超出范围。为此,我知道,在指定的索引处没有图像。

Hi!
I am able to use htmlagilitypack to extract first image from a website. But I want to be able to extract blog post feature image. I am using firstOrDefault and it gives me the first image on the given url.

Please help me.
Thanks.

What I have tried:

I have tried using the Linq ElementAt(1) and i get index was out of range. For that I know, there is no image at that specified index.

推荐答案



这篇关于如何使用htmlagilitypack提取博客文章图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-02 00:11