移除XML元素的命名空间是常见的任务,C# 提供了直接的解决方案。
首先,定义一个接口来实现所需的功能:
<code class="language-csharp">public interface IXMLUtils { string RemoveAllNamespaces(string xmlDocument); }</code>
以下XML数据作为示例:
<code class="language-xml"><?xml version="1.0" encoding="utf-16"?><arrayofinserts xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><insert><offer xmlns="http://schema.peters.com/doc_353/1/Types">0174587</offer><type2 xmlns="http://schema.peters.com/doc_353/1/Types">014717</type2><supplier xmlns="http://schema.peters.com/doc_353/1/Types">019172</supplier><id_frame xmlns="http://schema.peters.com/doc_353/1/Types"></id_frame><type3 xmlns="http://schema.peters.com/doc_353/1/Types"><type2></type2><main>false</main></type3><status xmlns="http://schema.peters.com/doc_353/1/Types">Some state</status></insert></arrayofinserts></code>
移除命名空间的核心函数是递归的,其工作原理如下:
<code class="language-csharp">private static XElement RemoveAllNamespaces(XElement xmlDocument) { if (!xmlDocument.HasElements) { XElement xElement = new XElement(xmlDocument.Name.LocalName); xElement.Value = xmlDocument.Value; foreach (XAttribute attribute in xmlDocument.Attributes()) xElement.Add(attribute); return xElement; } return new XElement(xmlDocument.Name.LocalName, xmlDocument.Elements().Select(el => RemoveAllNamespaces(el))); }</code>
它迭代XML结构,移除命名空间,并保留元素内容和属性。
使用前面定义的接口和函数,可以这样调用XML命名空间移除功能:
<code class="language-csharp">string result = RemoveAllNamespaces(xmlDocument);</code>
从示例XML中移除命名空间后的最终结果:
<code class="language-xml"><?xml version="1.0" encoding="utf-16"?><arrayofinserts><insert><offer>0174587</offer><type2>014717</type2><supplier>019172</supplier><id_frame></id_frame><type3><type2></type2><main>false</main></type3><status>Some state</status></insert></arrayofinserts></code>
利用C#的XElement
类和递归功能,可以有效地从XML文档中移除命名空间,从而更轻松地操作和处理数据。
以上是如何在 C# 中高效删除 XML 命名空间?的详细内容。更多信息请关注PHP中文网其他相关文章!