xsl-list
[Top] [All Lists]

Re: Looking for shorthand form

2004-01-06 04:39:42
Thanks Peter :)

Karthikeyan B
----- Original Message ----- 
From: "Peter Hickman" <peter(_at_)semantico(_dot_)com>
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
Sent: Tuesday, January 06, 2004 4:42 PM
Subject: Re: [xsl] Looking for shorthand form


karthikeyan.balasubramanian wrote:
Hi,
 
  Can anybody suggest shorthand form for this code 

=============
<xsl:choose>
   <xsl:when test="string-length(@FIGNBR)=2">
    <xsl:value-of select="@FIGNBR"/>
    <xsl:text>&#160;</xsl:text>
   </xsl:when>
   <xsl:otherwise>
    <xsl:value-of select="@FIGNBR"/>
   </xsl:otherwise>
  </xsl:choose>
===============

Maybe

<xsl:value-of select="@FIGNBR"/>
<xsl:if test="string-length(@FIGNBR)=2">
   <xsl:text>&#160;</xsl:text>
</xsl:if>


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




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



<Prev in Thread] Current Thread [Next in Thread>