0

如何解析 HTML 以找到带有特定or or的锚 ( <a />) 元素?idclasstitle

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

4

1 回答 1

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;
于 2012-09-06T15:25:05.447 回答