xsl-list
[Top] [All Lists]

Re: Looking for shorthand form

2004-01-07 09:43:47
Hi Dimitre,

  Wow never thought this way is 
also possible :)

  Very Cool.

Karthikeyan B
----- Original Message ----- 
From: "Dimitre Novatchev" <dnovatchev(_at_)yahoo(_dot_)com>
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
Sent: Tuesday, January 06, 2004 6:01 PM
Subject: Re: [xsl] Looking for shorthand form 


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

Use a single xsl:value-of :

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



Dimitre Novatchev.
FXSL developer

http://fxsl.sourceforge.net/ -- the home of FXSL
Resume: http://fxsl.sf.net/DNovatchev/Resume/Res.html


__________________________________
Do you Yahoo!?
Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes
http://hotjobs.sweepstakes.yahoo.com/signingbonus

 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>