如何从XElement中删除特定节点?

时间:2015-01-27 11:10:36

标签: c# .net xml linq-to-xml

我创建了一个带有节点的XElement,其中包含如下XML。

我想删除所有" 规则"如果节点包含" 条件"节点。

我创建了一个for循环,如下所示,但它不会删除我的节点

foreach (XElement xx in xRelation.Elements())
{
  if (xx.Element("Conditions") != null)
  {
    xx.Remove();
  }
}

示例:

<Rules effectNode="2" attribute="ability" iteration="1">
    <Rule cause="Cause1" effect="I">
      <Conditions>
        <Condition node="1" type="Internal" />
      </Conditions>
    </Rule>
    <Rule cause="cause2" effect="I">
      <Conditions>
        <Condition node="1" type="External" />
      </Conditions>
    </Rule>
</Rules>

如何删除所有&#34; 规则&#34;如果节点包含&#34; 条件&#34;节点

6 个答案:

答案 0 :(得分:14)

您可以尝试这种方法:

var nodes = xRelation.Elements().Where(x => x.Element("Conditions") != null).ToList();

foreach(var node in nodes)
    node.Remove();

基本思路:您无法删除当前正在迭代的集合元素 首先,您必须创建要删除的节点列表,然后删除这些节点。

答案 1 :(得分:8)

您可以使用Linq:

xRelation.Elements()
     .Where(el => el.Elements("Conditions") == null)
     .Remove();

或者创建要删除的节点的副本,然后删除它们(如果第一种方法不起作用):

List nodesToDelete = xRelation.Elements().Where(el => el.Elements("Conditions") == null).ToList();

foreach (XElement el in nodesToDeletes)
{
    // Removes from its parent, but not nodesToDelete, so we can use foreach here
    el.Remove();
}

答案 2 :(得分:3)

我为你做了一个小例子:

XDocument document = XDocument.Parse(GetXml());
var rulesNode = document.Element("Rules");
if (rulesNode != null)
{
    rulesNode.Elements("Rule").Where(r => r.Element("Conditions") != null).Remove();
}

答案 3 :(得分:3)

passiveLead.DataXml.Descendants("Conditions").Remove();

答案 4 :(得分:0)

var el = xRelation.XPathSelectElement("/Rules/Rule/Conditions");
while (el != null)
{
      el.Remove();
      el = xRelation.XPathSelectElement("/Rules/Rule/Conditions");
}

答案 5 :(得分:-1)

只是个主意:

反转Linq的“条件”,您将获得一个没有“规则”节点的列表