1

我正在尝试为给定的行/字符位置(例如第 5 行,字符 12)找到相应的 HtmlNode。我查看了帮助文档,但我不太确定它是否可用。

这可以在 Html Agility Pack 中完成吗?

编辑:

示例 HTML 文件:

<!DOCTYPE html>
<html>
<body>

<h4>An Ordered List:</h4>
<ol>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

</body>
</html>

我正在尝试获取位置第 7 行,字符 5 -> Coffee LI 和第 12 行,返回节点。

4

1 回答 1

5

If you are talking about the HTML at line 5, position 12, you could do something like this:

private void button1_Click_1(object sender, EventArgs e)
{
    HtmlAgilityPack.HtmlWeb web = new HtmlAgilityPack.HtmlWeb();
    HtmlAgilityPack.HtmlDocument doc;
    doc =  web.Load("http://slashdot.org");


    var node = CheckLine(doc.DocumentNode);
    if (node != null)
        MessageBox.Show(node.OuterHtml);
}

private HtmlAgilityPack.HtmlNode CheckLine(HtmlAgilityPack.HtmlNode node)
{
    if (node.Line == 5 && node.LinePosition < 12 && ((node.LinePosition + node.OuterHtml.Length) > 12))
        return node;

    foreach (var n in node.ChildNodes)
    {
        var val = CheckLine(n);
        if (val != null)
            return val;
    }
    return null;
}
于 2012-06-11T04:15:15.567 回答