删除所有没有属性的 XML 元素 C#

发布于 2024-12-17 18:39:14 字数 1401 浏览 0 评论 0原文

我想知道如何从 xml 文件中删除没有 nameref 类型第一个属性的所有元素。即使父元素已被删除,包含所需类型的第一个属性的子元素也必须保留,并且它们应该在层次结构中向上移动

例如,如果这是输入文件:

<xs:element name="Body" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="Client" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="Risk" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="Claim" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="Complaint" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="ClientFee" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="User" minOccurs="0" />
    </xs:sequence>
  </xs:complexType>
</xs:element>

我期望以下输出:

<xs:element name="Body" xmlns:xs="http://www.w3.org/2001/XMLSchema">
      <xs:element ref="Client" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="Risk" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="Claim" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="Complaint" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="ClientFee" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="User" minOccurs="0" />
</xs:element>

I would like to know how to remove all elements from an xml file which do not have a first attribute of type name or ref. The child elements that DO contain a first attribute of the required type must stay even if the parent has been deleted and they should just be moved up in the hierarchy

For example, if this is the input file:

<xs:element name="Body" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="Client" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="Risk" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="Claim" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="Complaint" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="ClientFee" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="User" minOccurs="0" />
    </xs:sequence>
  </xs:complexType>
</xs:element>

I would expect the following output:

<xs:element name="Body" xmlns:xs="http://www.w3.org/2001/XMLSchema">
      <xs:element ref="Client" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="Risk" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="Claim" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="Complaint" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="ClientFee" minOccurs="0" maxOccurs="unbounded" />
      <xs:element ref="User" minOccurs="0" />
</xs:element>

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

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

发布评论

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

评论(1

喵星人汪星人 2024-12-24 18:39:14

例如这样:

 void RemoveRecurence(XElement e) {
      foreach(var child in e.Elements()) {
           RemoveRecurence(child);
      }

      if (e.Attribute("name") == null && e.Attribute("ref") == null) {
           e.ReplaceWith(e.Elements());            
      }
 }

For example this way:

 void RemoveRecurence(XElement e) {
      foreach(var child in e.Elements()) {
           RemoveRecurence(child);
      }

      if (e.Attribute("name") == null && e.Attribute("ref") == null) {
           e.ReplaceWith(e.Elements());            
      }
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文