c# - 删除两个元素之间的所有元素

标签 c# html xpath html-agility-pack

我有大约 2500 个不同标准的 html 文件。我需要删除它们的页 footer 分。下面的 HTML 代码是我的文件页脚之一,我需要删除两个 hr 元素和两者之间的元素。

到目前为止,我只尝试使用 xpath(和 HTML 敏捷包)selectSingleNode 定位 hr 元素和 DocumentNode.SelectNodes("//hr"); .然后尝试使用 foreach 进行迭代。
但是我太菜鸟了,无法正确使用 XPath,并且不知道如何选择节点及其 sibling (?)来删除它们。

在这个社区的帮助下,这就是我到目前为止所得到的。 :)

private static void RemoveHR(IEnumerable<string> files)
{
    var document = new HtmlDocument();
    List<string> hr = new List<string>();
    List<string> errors = new List<string>();
    int i = 0;
    foreach (var file in files)
    {
        try
        {
            document.Load(@file);
            i++;
            var hrs = document.DocumentNode.SelectNodes("//hr");
            foreach (var hr in hrs) hr.Remove();
            document.Save(@file);

        }
        catch (Exception Ex)
        {
            errors.Add(file + "|" + Ex.Message);
        }
    }
    using (StreamWriter logger = File.CreateText(@"D:\websites\dev.openjournal.tld\public\arkivet\ErrorLogs\hr_error_log.txt"))
    {
        foreach (var file in errors)
        {
            logger.WriteLine(file);
        }
    }
    int nrOfHr = hr.Count();
    int nrOfErrors = errors.Count();
    Console.WriteLine("Number of hr elements collected: {0}", nrOfHr);
    Console.WriteLine("Number of files missing hr element: {0}", nrOfErrors);
}

HTML 源代码:
<hr color=#ff00ff SIZE=3> //start element
<p style="text-align : center; color : Red; font-weight : bold;">How to cite this paper:</i></p>
<p style="text-align : left; color : black;">Ekmek&ccedil;ioglu, F. &Ccedil;una, Lynch, Michael F. &amp; Willett, Peter   (1996)&nbsp; &quot;Stemming and N-gram matching for term conflation in Turkish texts&quot;&nbsp;<em>Information Research</em>, <strong>1</strong>(1) Available at: http://informationr.net/ir/2-2/paper13.html</p>
<p style="text-align : center">&copy; the authors, 1996.</p>
<hr color="#ff00ff" size="1"><div align="center">Check for citations, <a href="http://scholar.google.co.uk/scholar?hl=en&amp;q=http://informationr.net/ir/2-2/paper13.html&amp;btnG=Search&amp;as_sdt=2000">using Google Scholar</a></div>
                                 <hr color="#ff00ff" size="1">
<table border="0" cellpadding="15" cellspacing="0" align="center">
<tr> 
    <td><a href="infres22.html"><h4>Contents</h4></a></td>
    <td align="center" valign="top"><h5 align="center"><IMG SRC="http://counter.digits.net/wc/-d/-z/6/-b/FF0033/paper13" ALIGN=middle  WIDTH=60 HEIGHT=20 BORDER=0 HSPACE=4 VSPACE=2><br><a href="http://www.digits.net/ ">Web Counter</a><br>Counting only since 13 December 2002</h5></td>
    <td><a href="http://InformationR.net/ir/"><h4>Home</h4></a></td>
</tr>
</table>
<hr color=#ff00ff SIZE=3> //end element

编辑
我对目标节点的前同级和后同级进行了一些实验。不幸的是,它不包括列表中的目标节点。
var footerTags = document.DocumentNode.SelectNodes("//*[preceding-sibling::p[contains(text(),'How to cite this')] and following-sibling::hr[@color = '#ff00ff']]");

它找到带有文本“How to cite this”的段落,然后选择它之间的所有节点,并选择颜色为“ff00ff”的hr。但不包括要移除的列表中实际选择的节点,它们需要与选择的节点一起被移除。

最佳答案

假设开始和结束节点是真的一样 (相同的标签名称、属性和属性值)正如您在上面的评论中提到的,这并不难:

  • 选择起始节点。
  • 迭代并删除每个兄弟节点,直到并包括结束节点。
  • 删除起始节点。

  • 示例 HTML:
    var html =
    @"<!doctype html system 'html.dtd'>
    <html><head></head>
    <body>
    
    <div>DO NOT DELETE</div>
    
    <hr color=""#ff00ff"" SIZE='3'> //start element
    <p style='text-align : center; color : Red; font-weight : bold;'>How to cite this paper:</i></p>
    <p style='text-align : left; color : black;'>Ekmek&ccedil;ioglu, F. &Ccedil;una, Lynch, Michael F. &amp; Willett, Peter   (1996)&nbsp; &quot;Stemming and N-gram matching for term conflation in Turkish texts&quot;&nbsp;<em>Information Research</em>, <strong>1</strong>(1) Available at: http://informationr.net/ir/2-2/paper13.html</p>
    <p style='text-align : center'>&copy; the authors, 1996.</p>
    <hr color='#ff00ff' size='1'><div align='center'>Check for citations, <a href='http://scholar.google.co.uk/scholar?hl=en&amp;q=http://informationr.net/ir/2-2/paper13.html&amp;btnG=Search&amp;as_sdt=2000'>using Google Scholar</a></div>
                                     <hr color='#ff00ff' size='1'>
    <table border='0' cellpadding='15' cellspacing='0' align='center'>
    <tr> 
        <td><a href='infres22.html'><h4>Contents</h4></a></td>
        <td align='center' valign='top'><h5 align='center'><IMG SRC='http://counter.digits.net/wc/-d/-z/6/-b/FF0033/paper13' ALIGN=middle  WIDTH=60 HEIGHT=20 BORDER=0 HSPACE=4 VSPACE=2><br><a href='http://www.digits.net/'>Web Counter</a><br>Counting only since 13 December 2002</h5></td>
        <td><a href='http://InformationR.net/ir/'><h4>Home</h4></a></td>
    </tr>
    </table>
    <hr COLOR='#ff00ff' SIZE=""3""> //end element
    
    <div>DO NOT DELETE</div>
    </body>
    </html>";
    

    解析它:
    var document = new HtmlDocument();
    document.LoadHtml(html);
    var startNode = document.DocumentNode.SelectSingleNode("//hr[@size='3'][@color='#ff00ff']");
    // account for mismatched quotes in HTML source
    var quotesRegex = new Regex("[\"']");
    var startNodeNoQuotes = quotesRegex.Replace(startNode.OuterHtml, "");
    HtmlNode siblingNode;
    
    while ( (siblingNode = startNode.NextSibling) != null)
    {
        siblingNode.Remove();
        if (quotesRegex.Replace(siblingNode.OuterHtml, "") == startNodeNoQuotes)
        {
            break;  // end node
        }
    }
    
    startNode.Remove();
    

    结果输出:
    <!doctype html system 'html.dtd'>
    <html><head></head>
    <body>
    
    <div>DO NOT DELETE</div>
    
     //end element
    
    <div>DO NOT DELETE</div>
    </body>
    </html>
    

    关于c# - 删除两个元素之间的所有元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48891744/

    相关文章:

    c# - SQL 查询比较 Datetime 时 SQLDependency 失败

    c# - 尝试导入非托管 dll 时 Pinvoke "System.AccessViolationException"

    javascript - 谷歌翻译默认语言

    java - org.openqa.selenium.InvalidSelectorException : invalid selector SyntaxError: Unexpected token } using XPath through Selenium Java

    macos - 为什么 sed 无法处理来自 xpath 的管道输出?

    c# - 当相关页面从后台堆栈中移除时,从内存中清除 View 模型 - WP8.1

    c# - 如何将事件实例的所有处理程序(委托(delegate))添加到同一事件类型的另一个事件实例?

    html - JQuery 附加到子元素

    html - 在 div/图像右侧 float 文本

    ruby - 从 HTML 中抓取轨道数据?