我试图用HtmlAgilityPack删除空的html节点。我想删除所有这样的节点:
<p><span> </span></p>
这是我尝试过但却无法正常工作的事情:
static string RemoveEmptyParagraphs(string html)
{
HtmlDocument document = new HtmlAgilityPack.HtmlDocument();
document.LoadHtml(html);
foreach (HtmlNode eachNode in document.DocumentNode.SelectNodes("//p/span/text() = ' '"))
eachNode.Remove();
html = document.DocumentNode.OuterHtml;
return html;
}
答案 0 :(得分:0)
在使用document.LoadHtml(html);
加载html之前,您可以执行以下操作:
document.LoadHtml(html.Replace("<p><span> </span></p>", ""));
或者查看this:
static void RemoveEmptyNodes(HtmlNode containerNode)
{
if (containerNode.Attributes.Count == 0 && !_notToRemove.Contains(containerNode.Name) && (containerNode.InnerText == null || containerNode.InnerText == string.Empty) )
{
containerNode.Remove();
}
else
{
for (int i = containerNode.ChildNodes.Count - 1; i >= 0; i-- )
{
RemoveEmptyNodes(containerNode.ChildNodes[i]);
}
}
}