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 8354561
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T09:34:57+00:00 2026-06-09T09:34:57+00:00

I want to remove all tags from my XML file except a finite number

  • 0

I want to remove all tags from my XML file except a finite number of tags, which i am aware of . How can i do that with XSLT.

I know i can use the following to strip div tags from my xml but i want to negate, like Strip all BUT Div.

  <xsl:template match = "div">
        <xsl:apply-templates select="@*|node()"/>
  </xsl:template>

More Snippet of the XSLT file:

  <xsl:template match="div"> <!-- switch the element name -->
    <xsl:element name="newdiv">
      <xsl:copy-of select="@*" />
      <xsl:apply-templates />
    </xsl:element>
  </xsl:template>

  <xsl:template match="div"/>
  <xsl:template match="*"> 
     <xsl:copy> 
    <xsl:apply-templates select="@*|node()"/> 
     </xsl:copy> 
  </xsl:template>       
  • 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-06-09T09:34:59+00:00Added an answer on June 9, 2026 at 9:34 am

    I believe this question was answered already.
    Use two templates.

    <xsl:template match="*">
       <!-- Everything -->
    </xsl:template>
    
    <xsl:template match="something | somethingelse">
       <!-- what you want ignored -->
    </xsl:template>
    

    Fourth edit.

    Input sample:

    <body>
        <table>
            <tr>
                <td>
                </td>
            </tr>
        <div>content</div>
        </table>
        <div>content again</div>
    </body>
    

    XSLT transformation to do what you need:

    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    
        <xsl:template match="div">
           <xsl:element name="div">
             <xsl:copy-of select="@*" />
             <xsl:apply-templates />
           </xsl:element>
        </xsl:template>
    
    
        <xsl:template match="*">
          <xsl:apply-templates select="@*|node()"/>
        </xsl:template>
    </xsl:stylesheet>
    

    This REMOVES ALL TAGS EXCEPT DIV. And KEEPS ALL TAG CONTENT. I just tried it.

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

Sidebar

Related Questions

I want to remove all php tags from a external text so it can
I want to remove the attributes of all tags from a XML (I want
I want to remove all tags except the img tag, $words = strip_tags($words, '<img>');
I want regular expression in ruby on rails which remove all the html tags
I want to strip all html tags from a string except some I specify.
I have an XML file that I want to transform using an XSLT. It
I want to remove all noise tags from input tags (a string) The tags
I want to remove all script tags from HTML using objective c. I wrote
I want to remove all styles from tags with PHP. For example. Original: <body
I want to remove style from all html tags but not from img tag

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.