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]
Other format: [Raw text]

RE: count element content length


Lainaus Jarno.Elovirta@nokia.com:

> Heppa,
> 
> > Is there some method to count the elements content length and when 
> > for example the 20th character is met, then it would stop showing 
> > the rest and put ... after that. Because of my lowsy english, here
> > is one example:
> > 
> > elements content:
> > <Subject id="0000000002">Chattaamaan city chattiin ke klo 12</Subject>
> > 
> > the result should be:
> > <p>Chattaamaan city cha...</p>
> 
> <xsl:template match="Subject">
>   <p>
>     <xsl:value-of select="concat(substring(., 1, 20),'...')" />
>   </p>
> </xsl:template>
> 
> But you might want to consider breaking the string at word boundary

You are right, but I am not at that level yet =)
But hey! If I do like Santtu suggested, the result is a bit wrong since
it adds "..." also to elements that are shorter than 20 characters. What to do?

Cheers Jarkko

> 
> Cheers,
> 
> Santtu
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 
> 



*******************************************************************
Jarkko Moilanen         *You are wise, witty, and wonderful,      *
Researcher/ ITCM        *but you spend too much time              *
jarkko.moilanen@uta.fi  *reading this sort of trash.              *
www.uta.fi/~jm60697     *                                         *
GSM: +358 50 3766 927   *                                         *
*******************************************************************
* ITCM Information Technology and Crisis Management               *
*******************************************************************

 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]