XML 文档中节点拥有的最大属性数

发布于 2024-09-15 00:54:03 字数 474 浏览 3 评论 0原文

我们感兴趣的是查找 XML 文档中节点所具有的最大属性数。我的代码如下,使用 C#:

        XmlDocument xmlDoc = new XmlDocument();
        xmlDoc.Load(@"C:\ABC.xml");
        XmlNode root = xmlDoc.DocumentElement;

        int nodeAttrCount = 0;
        foreach (XmlNode node in root)                            
            if (nodeAttrCount < node.Attributes.Count)
                nodeAttrCount = node.Attributes.Count;

我们感兴趣的是:我们有比这更好的东西吗?就像任何给我们相同结果或任何其他选项的方法或属性一样。

We are interested in finding maximum number of attributes a node has in a XML document. My code is below using C#:

        XmlDocument xmlDoc = new XmlDocument();
        xmlDoc.Load(@"C:\ABC.xml");
        XmlNode root = xmlDoc.DocumentElement;

        int nodeAttrCount = 0;
        foreach (XmlNode node in root)                            
            if (nodeAttrCount < node.Attributes.Count)
                nodeAttrCount = node.Attributes.Count;

We are interested is: do we have any thing better than this. Like any method or property which give us the same result or anyother option.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

叹沉浮 2024-09-22 00:54:03

您还可以使用 LINQ to XML:

XElement el = XElement.Load("MyXML.xml");
int maxAttr = el.DescendantNodesAndSelf().OfType<XElement>().Max(x => x.Attributes().Count());

上面的代码遍历所有 xml 节点(它也适用于嵌套节点)并获取最大数量的属性。


对于.net 2.0:

XmlDocument doc = new XmlDocument();
doc.Load("MyXML.xml");
int max = 0;
foreach (XmlNode xmlNode in doc.SelectNodes("//*"))
   if (max < node.Attributes.Count)
       max = node.Attributes.Count;

这与您的解决方案基本相同;
主要区别在于它考虑每个嵌套级别的所有节点(使用 XPath 导航)。

You can also use LINQ to XML:

XElement el = XElement.Load("MyXML.xml");
int maxAttr = el.DescendantNodesAndSelf().OfType<XElement>().Max(x => x.Attributes().Count());

The above code traverses all the xml nodes (it works with nested nodes too) and get the maximum number of attributes.


For .net 2.0:

XmlDocument doc = new XmlDocument();
doc.Load("MyXML.xml");
int max = 0;
foreach (XmlNode xmlNode in doc.SelectNodes("//*"))
   if (max < node.Attributes.Count)
       max = node.Attributes.Count;

This is basically the same as your solution;
the main difference is that it considers all nodes at every nesting level (using XPath navigation).

小兔几 2024-09-22 00:54:03

这是满足相当小众需求的三行代码。我不希望它已经存在于 .NET 框架中。

您的 foreach 循环看起来不错。您确定只想查看根元素,而不是在文档内递归吗?

This is three lines of code for a fairly niche requirement. I wouldn't expect this to already exist in the .NET framework.

Your foreach loop looks fine. Are you sure you want to only look at the root elements, and not recurse inside the document?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文