私はこれまでのところ、このコードは、Webページそれほどのすべてのリンクを抽出している フィルタのリンクは
HtmlWeb hw = new HtmlWeb();
HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
doc = hw.Load(txt_url.Text);
foreach (HtmlNode link in doc.DocumentNode.SelectNodes("a//[@href]"))
{
// Get the value of the HREF attribute
string hrefValue = link.GetAttributeValue("href", string.Empty);
listbox1.Items.Add(hrefValue);
}
HtmlAgilityPack
を使用して、この私のコードをWebページからリンクを抽出し、それらをフィルタリングするためのプログラムを働いています私の質問は、 ".html"のような拡張子でそれらのURLをフィルタリングする方法です