我正在尝试从外部站点获取一些文本。我要获取的文本嵌套在段落标记中。div 有一个类值
html代码片段:
<div class="discription"><p>this is the text I want to grab</p></div>
当前的 C# 代码:
public String getDiscription(string url)
{
var web = new HtmlWeb();
var doc = web.Load(url);
var nodes = doc.DocumentNode.SelectNodes("//div[@class='discription']");
if (nodes != null)
{
foreach (var node in nodes)
{
string Description = node.InnerHtml;
return Description;
}
} else
{
string error = "could not find text";
return error;
}
}
我不明白的是 xpath 的语法//div[@class='discription']
我知道它是错误的 xpath 应该是什么?