gpt4 book ai didi

c# - 如何从 C# 中的行号和列号中查找 XML 节点?

转载 作者:数据小太阳 更新时间:2023-10-29 02:06:55 26 4
gpt4 key购买 nike

鉴于以下

  • 行号
  • 列号
  • 一个 XML 文件

(其中行号和列号代表节点的'<'字符)

如何使用 XDocument API 在该位置找到 XNode。

最佳答案

你可以这样做:

XNode FindNode(string path, int line, int column)
{
XDocument doc = XDocument.Load(path, LoadOptions.SetLineInfo);
var query =
from node in doc.DescendantNodes()
let lineInfo = (IXmlLineInfo)node
where lineInfo.LineNumber == line
&& lineInfo.LinePosition <= column
select node;
return query.LastOrDefault();
}

关于c# - 如何从 C# 中的行号和列号中查找 XML 节点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9226108/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com