xsl-list
[Top] [All Lists]

RE: Looking for shorthand form

2004-01-06 07:40:19
Well, you could start with

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

If one knew more about the possible values of @FIGNBR it could probably
be simplified further. For example, if the only other possible value is
3, you could write

<xsl:value-of select="substring(concat(@FIGNBR, '&#160'), 1, 3)"/>

Michael Kay


-----Original Message-----
From: owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com 
[mailto:owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com] On Behalf Of 
karthikeyan.balasubramanian
Sent: 06 January 2004 09:57
To: MulberryTech List
Subject: [xsl] Looking for shorthand form


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>
===============

Have a great day.

Karthikeyan B



 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>