C#에서 XML 네임스페이스 선언을 효율적으로 제거
이 기사에서는 구조를 단순화하거나 특정 요구 사항을 충족하기 위해 XML 문서에서 네임스페이스 선언을 제거하는 포괄적인 솔루션을 제공합니다.
질문:
구조를 단순화하거나 특정 요구 사항을 충족하기 위해 XML 문서에서 모든 네임스페이스 선언을 제거하려고 합니다.
인터페이스:
<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-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>
해결책:
재귀 함수를 사용하여 XML 문서를 반복하고 모든 요소에서 네임스페이스를 제거할 수 있습니다. 이 기능은 다음 단계를 따릅니다.
다음은 솔루션의 C# 구현입니다.
<code class="language-csharp">public static string RemoveAllNamespaces(string xmlDocument) { XElement xmlDocumentWithoutNamespaces = RemoveAllNamespaces(XElement.Parse(xmlDocument)); return xmlDocumentWithoutNamespaces.ToString(); } 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 요소의 원래 값과 속성을 유지하여 안정적이고 정확한 네임스페이스 제거를 보장합니다.
위 내용은 C#에서 XML 네임스페이스 선언을 효율적으로 제거하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!