从xml中删除xmlns属性

时间:2019-07-09 15:59:29

标签: c# xml c#-4.0 xmldocument xmlnode

在xml下面,我尝试删除xmlns属性,但是无法在下面填充它, xmlNode.Attributes仍然出现在outerxml和最终的xmldocument下。

... 
<z:Datac knid="2" xmlns="http://services/api/"></z:Datac>
...
<z:Datac knid="3" xmlns="http://services/api/"></z:Datac>
....
<z:Datac knid="5" xmlns="http://services/api/"></z:Datac>
....

如何为每个z:Datac元素删除xmlns属性。

foreach (var item in nodes)
                    {
                        var xmlnsAttribute = (item.Attributes has "xmlns" attribute)
                        if (xmlnsAttribute != null)
                        {
                            Remove xmlNode...  //not able to reach here as not able to find xmlns.
                        }
}

没有xml.linq

1 个答案:

答案 0 :(得分:1)

,您想要类似的东西:

XmlDocument doc = new XmlDocument();
doc.Load("my.xml");
foreach(var node in doc.DocumentElement.ChildNodes)
{
    var el = node as XmlElement;
    if (el != null)
    {
        if (el.HasAttribute("xmlns"))
        {
            var ns = el.GetAttribute("xmlns");
            if (ns != null && ns != el.NamespaceURI)
            {
                el.RemoveAttribute("xmlns");
            }
        }
    }
}
doc.Save("new.xml");

很显然,在复杂的情况下,您可能希望对其进行查询或发出全要素查询。