Sign Up
Search
Options
search
Chat
Help
News
Log in
Not Logged in
Home
»
Boards
»
Stylus Studio Developer Network
»
XSLT Help and Discussion
»
Removing tag using xslt ?
Topic
Topic Page
1
2
3
4
5
6
7
8
9
Prev Topic
Next Topic
next
Subject:
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!
next
Subject:
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>
top
Subject:
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
Prev Topic
Next Topic
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 to Conference:
Select Conference
Stylus Studio Feature Requests
Stylus Studio Technical Forum
Website Feedback
XSLT Help and Discussion
XQuery Help and Discussion
Stylus Studio FAQs
Stylus Studio Code Samples & Utilities
Stylus Studio Announcements
go
Log In Options
Username:
Password:
Site Map
|
Privacy Policy
|
Terms of Use
|
Trademarks
Stylus Scoop XML Newsletter:
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.