This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Removing tags automatically efter xsl transformation!


At 11:34 AM 8/7/01, Mike wrote:
> >   <xsl:template match="/">
> >       <tag><xsl:value-of select="othertag"/></tag>
> >   </xsl:template>
> >
> > Sometimes isn't there a <othertag> in the input-xml-file. So
> > I get <tag/> in
> > the output. But this is that I don't want to have.
> >
>Then you have to avoid generating it.
>
><xsl:if test="othertag">
>  <tag><xsl:value-of select="othertag"/></tag>
></xsl:if>

Or (a bit more neatly, but using the oft-abused xsl:for-each):

<xsl:for-each select="othertag">
  <tag><xsl:value-of select="."/></tag>
</xsl:if>

Or even the "proper" way to do it:

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

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

It's really very logical :->

--Wendell

>Mike Kay
>Software AG
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


======================================================================
Wendell Piez                            mailto:wapiez@mulberrytech.com
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9635
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
   Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]