移除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中文網其他相關文章!