从XmlDocument AND中删除子节点,包括元素的parentnode
本文关键字:包括 元素 parentnode 子节点 XmlDocument AND 删除 | 更新日期: 2023-09-27 18:27:53
我得到的代码如下所示。
public void Delete(Feed item)
{
XmlDocument doc = new XmlDocument();
doc.Load("Feed.xml");
XmlNodeList nodes = doc.SelectNodes("/Feeds/Input");
foreach (XmlNode noden in nodes)
{
if (noden.SelectSingleNode("Id").InnerText == item.Id.ToString())
{
nodes[iterator].RemoveAll();
noden.RemoveAll();
break;
}
}
doc.Save("Feed.xml");
}
这是我的xml 的一个例子
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Feeds>
<Input>
<Name>Examplename</Name>
<Id>572b9c08-0d76-415d-9b53-ac2e87fceae6</Id>
<Url>Examppleurl</Url>
<Category>Logic.Entities.Category</Category>
<Feed>
<Id>ExampleID</Id>
<Title>12. A strange week to be Swedish</Title>
<Enclosure>example.mp3</Enclosure>
</Feed>
<Feed>
<Id>anotherexampleid</Id>
<Title>11. The not-Malala-guy</Title>
<Enclosure>another example.mp3</Enclosure>
</Feed>
</Input>
<Input>
<Feeds>
<Input>
<Name>Examplename</Name>
<Id>572b9c08-0d76-415d-9b53-ac2e87fceae6</Id>
<Url>Examppleurl</Url>
<Category>Logic.Entities.Category</Category>
<Feed>
<Id>ExampleID</Id>
<Title>12. A strange week to be Swedish</Title>
<Enclosure>example.mp3</Enclosure>
</Feed>
<Feed>
<Id>anotherexampleid</Id>
<Title>11. The not-Malala-guy</Title>
<Enclosure>another example.mp3</Enclosure>
</Feed>
</Input>
</Input>
</Feeds>
当我像上面的代码一样删除它时,它会删除我想要的,但留下一个空的
<input>
</input>
所以我的问题是,我想删除空的输入。。。我该如何处理?
谢谢。
您可以使用更具体的XPath:仅选择要删除的<Input>
节点
string xpath = String.Format("/Feeds/Input[Id='{0}']", item.Id.ToString());
XmlNodeList nodes = doc.SelectNodes(xpath);
然后像这样删除它们:
foreach (XmlNode noden in nodes)
{
noden.ParentNode.RemoveChild(noden);
}