使用 LINQ to XML 从 xml 中删除子元素

发布于 2024-10-18 09:48:14 字数 485 浏览 0 评论 0原文

我想使用 LINQ to XML 从 XML 文档中删除子元素。

示例 XML:

<MainElement>
<otherelement />
<removeElement att='1'>
<removeElement att='2'>
<removeElement att='3'>
<removeElement att='4'>
</MainElement>

我希望输出为

<MainElement>
<otherelement />
<removeElement att='2'>
</MainElement>

结构(架构)应保持原样,并且所选元素应保留在 XML 文档中。

我尝试的查询帮助我从 XML 中找到该元素,但是,如何维护 XML 结构

I want to remove sub elements from an XML doc using LINQ to XML.

sample XML:

<MainElement>
<otherelement />
<removeElement att='1'>
<removeElement att='2'>
<removeElement att='3'>
<removeElement att='4'>
</MainElement>

I want the output to be

<MainElement>
<otherelement />
<removeElement att='2'>
</MainElement>

The structure(Schema) should remain as it is, and the selected element should remain in the XML doc.

the queries that I tried helps me find that element from the XML, however, how do I maintain the XML structure

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

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

发布评论

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

评论(1

请止步禁区 2024-10-25 09:48:14

编写一个查询来查找要删除的节点并删除它们。

XDocument doc = ...;
doc.Root
   .Elements("removeElement")
   .Where(e => (int)e.Attribute("att") != 2)
   .Remove(); // removes all elements in this query

Write a query to find the nodes that you want to remove and remove them.

XDocument doc = ...;
doc.Root
   .Elements("removeElement")
   .Where(e => (int)e.Attribute("att") != 2)
   .Remove(); // removes all elements in this query
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文