XML Editor
Sign up for a WebBoard account Sign Up Keyword Search Search More Options... Options
Chat Rooms Chat Help Help News News Log in to WebBoard Log in Not Logged in
Show tree view Topic
Topic Page 1 2 3 4 5 6 7 8 9 Go to previous topicPrev TopicGo to next topicNext Topic
Postnext
gemini mosesSubject: Removing tag using xslt ?
Author: gemini moses
Date: 06 May 2005 04:35 PM
Portion of my xsd file --

<xs:element name="Emp" sql:key-fields="ID">
<xs:complexType>
<xs:sequence>
<xs:element name="ID" sql:relation="Emp" sql:field="ID" sql atatype="int">
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:maxInclusive value="2147483647"/>
<xs:minInclusive value="-2147483648"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Name" sql:field="TYPE" sql atatype="int">
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:maxInclusive value="2147483647"/>
<xs:minInclusive value="-2147483648"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:complexType>
<xs:element name>

I want to get rid of all the tags including it's innner tag/ contents for <xs:simpleType>.

The document has very complicated structure.
All I want to have in converted document is everything else as is except <xs:simpleType> tag.

Can I do this using xslt? Or parsing the document is my only option?

Thanks!

Postnext
Ivan PedruzziSubject: Removing tag using xslt ?
Author: Ivan Pedruzzi
Date: 06 May 2005 10:14 PM
The following identity transformation should help
Ivan


<?xml version='1.0'?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsl:output method="xml" indent="yes"/>

<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>

<xsl:template match="@* | text() | comment() | processing-instruction()">
<xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="*">
<xsl:copy>
<xsl:apply-templates select="*| @* | text() | comment() | processing-instruction()"/>
</xsl:copy>
</xsl:template>

<xsl:template match="xsd:simpleType"/>

</xsl:stylesheet>

Posttop
gemini mosesSubject: Removing tag using xslt ?
Author: gemini moses
Date: 09 May 2005 09:44 AM
Thanks Ivan!!

It worked like a fly!!

Gemini

 
Topic Page 1 2 3 4 5 6 7 8 9 Go to previous topicPrev TopicGo to next topicNext Topic
Download A Free Trial of Stylus Studio 6 XML Professional Edition Today! Powered by Stylus Studio, the world's leading XML IDE for XML, XSLT, XQuery, XML Schema, DTD, XPath, WSDL, XHTML, SQL/XML, and XML Mapping!  
go

Log In Options

Site Map | Privacy Policy | Terms of Use | Trademarks
Stylus Scoop XML Newsletter:
W3C Member
Stylus Studio® and DataDirect XQuery ™are from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2016 All Rights Reserved.