问题
I am trying to select nodes except from script nodes and a ul that has a class called 'relativeNav'. Can someone please direct me to the right path? I have been searching for this for a week and I can't find it anywhere. Currently I have this but it obviously selecting the //ul[@class='relativeNav'] as well. Is there anyway to put an NOT expression of it so that SelectNode will ignore that one?
foreach (HtmlNode node in doc.DocumentNode.SelectNodes("//body//*[not(self::script)]/text()"))
{
Console.WriteLine("Node: " + node);
singleString += node.InnerText.Trim() + "\n";
}
回答1:
Given an Html document with a structure similar to:
<html>
<head><title>HtmlDocument</title>
</head>
<body>
<div>
<span>Hello Span World</span>
<script>
Script Text
</script>
</div>
<ul class='relativeNav'>
<li>Hello </li>
<li>Li</li>
<li>World</li>
</ul>
</body>
</html>
The following XPath expression will select all nodes which are not script elements excluding all children of UL elements with class 'relativeNav':
var nodes = htmlDoc.DocumentNode.SelectNodes("//body//*[not(parent::ul[@class='relativeNav']) and not(self::script)]/text()");
Update: forgot to mention that if you need to exclude any children of ul[class='relativeNav'] irrespective of their depth you should use:
"//body//*[not(ancestor::ul[@class='relativeNav']) and not(self::script)]/text()"
If you wanted to exclude the ul element as well (somewhat irrelevant in the example above since the element does not contain text) you should specify:
"//body//*[not(ancestor-or-self::ul[@class='relativeNav']) and not(self::script)]"
回答2:
I hope this is what you need:
HtmlDocument doc = new HtmlDocument();
var nodesToExclude1 = doc.DocumentNode.SelectNodes("//ul[@class='relativeNav']");
var nodesToExclude2 = doc.DocumentNode.SelectNodes("//body//script");
var requiredNodes = doc.DocumentNode.SelectNodes("//")
.Where(node => !nodesToExclude1.Contains(node) &&
!nodesToExclude2.Contains(node));
foreach (HtmlNode node in requiredNodes)
{
Console.WriteLine("Node: " + node);
singleString += node.InnerText.Trim() + "\n";
}
来源:https://stackoverflow.com/questions/13225438/htmlagilitypack-selectnodes-expression-to-ignore-an-element-with-a-certain-attri