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 10 11 12 13 14 15 16 17 18 19 20 Go to previous topicPrev TopicGo to next topicNext Topic
Postnext
Marcus LorenzSubject: XSL TRansformation to remove entitiy
Author: Marcus Lorenz
Date: 20 Jun 2005 09:07 AM
Hello,

i want to have a copy of an entity-tree without a specific child-node:

<E1EDP01...>
...many entities...
<E1EDPA1...>
...many entities...
</E1EDPA1>
...many entities...
</E1EDP01>

The result tree should include the whole E1EDP01 tree, without the E1EDPA1 node.

Thanks for your help.

Marcus

Postnext
(Deleted User) Subject: XSL TRansformation to remove entitiy
Author: (Deleted User)
Date: 20 Jun 2005 11:57 AM
you need to create an empty template matching E1EDPA1 to skip this node.
other nodes handling will go to match="*" and copy the node to the output.

<xsl:template match="*">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>

<xsl:template match="E1EDPA1">
</xsl:template>

Hope this helps.

Song.

Posttop
Marcus LorenzSubject: XSL TRansformation to remove entitiy
Author: Marcus Lorenz
Date: 21 Jun 2005 09:38 AM
Thanks,
that was just what i needed.

Marcus.

 
Topic Page 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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.