HttpWebResponse - >如何查找具有特定ID和类和标题的链接?

时间:2012-09-06 15:07:38

标签: c# .net element httpwebresponse windows-applications

如何解析HTML以查找具有特定<a />idclass的锚点title)元素?

最终,我想找到href属性的值。

1 个答案:

答案 0 :(得分:1)

这是一个例子

HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
doc.LoadHtml(somehtmlstring);

string value = doc.DocumentNode.Descendants("a")
    .First(n => n.Attributes["class"].Value == "someclass")
    .Attributes["href"]
    .Value;