我想用HTMLAGILITYPACK提取html页面的href。
这是WebPage上的字符串:
<a class="smallfont" href="http://example.com/fasdfsd" title="I am a title">Last <strong>»</strong></a>
我试过了:
document.DocumentNode.SelectNodes("//tr//td[@class='alt1']//a[@class='smallfont']//[@innertext='Last']")
但这不起作用。
我希望你们能帮助我
答案 0 :(得分:0)
因为您已经拥有包含链接的节点,所以您可以执行以下操作:
var links = MyLinkNodes.Select(node=>node.Attributes["href"].Value).ToArray();