如何从XElement中获取所有非空节点?

发布于 2024-09-10 11:10:35 字数 297 浏览 4 评论 0原文

我正在尝试从实际具有值的 XElement 中获取所有节点, 目前我正在使用此代码:

var nodes = from node in elem.Nodes()
            where node.NodeType == XmlNodeType.Element &&
                  ((XElement) node).Value.Length >  0
            select node;

是否有内置运算符可以执行此操作?

谢谢

I'm trying to get all nodes from an XElement that actually has a value,
currently I'm using this code:

var nodes = from node in elem.Nodes()
            where node.NodeType == XmlNodeType.Element &&
                  ((XElement) node).Value.Length >  0
            select node;

Is there a build in operator to do this operation?

Thanks

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

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

发布评论

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

评论(1

£冰雨忧蓝° 2024-09-17 11:10:35

我不相信有这样的内置东西。您确定要包含具有子元素的元素吗?例如:

XElement e = new XElement("Foo", new XElement("Bar"));
Console.WriteLine(e);
Console.WriteLine(e.Value.Length);

这将打印:

<Foo>
  <Bar />
</Foo>
0

... 因此 Foo 将作为“空”节点包含在内,即使它包含另一个元素。这绝对是你所追求的吗?

I don't believe there's anything like this built in. Are you sure you want to include elements that have subelements though? For example:

XElement e = new XElement("Foo", new XElement("Bar"));
Console.WriteLine(e);
Console.WriteLine(e.Value.Length);

This will print:

<Foo>
  <Bar />
</Foo>
0

... so Foo would be included as an "empty" node even though it contains another element. Is that definitely what you're after?

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