如何使用 HTMLAgilityPack 获取 Link 或 InnerText
How to get the Link or InnerText using HTMLAgilityPack
我有这样的结构:
<p class="info">Sample:
<strong>
<a href="http://PleaseGetMe.com"target="_blank">http://PleaseGetMe.com</a>
</strong>
</p>
这是我正在尝试的:
var a = doc.SelectNodes("//*[@class='info']//a");
Console.WriteLine(a);
哪个不成功
这是我的实现
foreach (HtmlNode node in doc.SelectNodes("//*[@class='info']//a"))
{
string value = node.InnerText;
Console.WriteLine(value);
}
我有这样的结构:
<p class="info">Sample:
<strong>
<a href="http://PleaseGetMe.com"target="_blank">http://PleaseGetMe.com</a>
</strong>
</p>
这是我正在尝试的:
var a = doc.SelectNodes("//*[@class='info']//a");
Console.WriteLine(a);
哪个不成功
这是我的实现
foreach (HtmlNode node in doc.SelectNodes("//*[@class='info']//a"))
{
string value = node.InnerText;
Console.WriteLine(value);
}