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 중국어 웹사이트의 기타 관련 기사를 참조하세요!