Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4049688
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T13:58:34+00:00 2026-05-20T13:58:34+00:00

I currently have the following XML file: <Regions> <Region> <Code>AU</Code> <Name>Austria</Name> </Region> </Regions> <Channels>

  • 0

I currently have the following XML file:

<Regions>
  <Region>
     <Code>AU</Code>
     <Name>Austria</Name>
  </Region>
</Regions>
<Channels>
    <Channel>
      <Code>00</Code>
      <Name>Im a channel</Name>
    </Channel>
    ...
</Channels>
<Programs>
   <Program>
      <Code>00</Code>
      <Name>Program</Name>          
   </Program>
</Programs>

I would only like to keep the Channels path so that the output would look like this using an XSLT:

<Channels>
    <Channel>
      <Code>00</Code>
      <Name>Im a channel</Name>
    </Channel>
    ...
</Channels>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T13:58:35+00:00Added an answer on May 20, 2026 at 1:58 pm

    This transformation:

    <xsl:stylesheet version="1.0"
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     <xsl:output omit-xml-declaration="yes" indent="yes"/>
     <xsl:strip-space elements="*"/>
    
     <xsl:template match="node()|@*">
         <xsl:copy>
           <xsl:apply-templates select="node()|@*"/>
         </xsl:copy>
     </xsl:template>
    
     <xsl:template match="/*">
      <xsl:apply-templates/>
     </xsl:template>
    
     <xsl:template match="/t/*[not(self::Channels)]"/>
    </xsl:stylesheet>
    

    when applied on the provided XML document (fixed to be made well-formed):

    <t>
        <Regions>
            <Region>
                <Code>AU</Code>
                <Name>Austria</Name>
            </Region>
        </Regions>
        <Channels>
            <Channel>
                <Code>00</Code>
                <Name>Im a channel</Name>
            </Channel>    
        </Channels>
        <Programs>
            <Program>
                <Code>00</Code>
                <Name>Program</Name>
            </Program>
        </Programs>
    </t>
    

    produces the wanted, correct result:

    <Channels>
       <Channel>
          <Code>00</Code>
          <Name>Im a channel</Name>
       </Channel>
    </Channels>
    

    Explanation:

    Use of the identity rule, overriden for the top element (pass-through) and for any non-Channels children of the top element (delete).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm currently using the following XAML code to add my xml file as a
I have an XML file that returns like the following: <games> <game> <appID>1234</appID> <name>game
Currently I have following XML: <Rowsets> <Rowset> <Row> <DrilldownDepth>0</DrilldownDepth> <ScheduleWeek>---</ScheduleWeek> <ABC>---</ABC> <PQR>1500</PQR> <XYZ>15000</XYZ> <Quant>285</Quant>
Hi currently I have a nested XMl , having the following Structure : <?xml
I currently have the following Get-ChildItem -recurse -include file.ext | Select-String -pattern c: |
I currently have the following code which delays showing a fixed bar after a
Given the following XML file: <?xml version=1.0 encoding=UTF-8?> <application name=foo> <movie name=tc english=tce.swf chinese=tcc.swf
I have a following XML file: <titles> <book title=XML Today author=David Perry/> <book title=XML
I have a XML file similar to the following: <a> <b value=a123 /> <b
Given the following XML file: <?xml version=1.0 encoding=UTF-8?> <process name=TestSVG2 xmlns=http://www.example.org targetNamespace=http://www.example.org xmlns:xsd=http://www.w3.org/2001/XMLSchema> <sequence>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.