RE: [xsl] displaying selective links in ouput

Subject: RE: [xsl] displaying selective links in ouput
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Thu, 30 Oct 2003 12:34:46 -0000
> > Id it possible to loop round the letter sof the alphabet??
> > a-z
> 
> <xsl:stylesheet xmlns:x="wibble"....
> 
> <x:alphabet >
> <x:A/><x:B/>....<x:Z/>
> </x:alphabet>
> 
> <xsl:for-each select="document('')/*/x:alphabet/*">
>   <xsl:value-of select="local-name()"/>

Or in 2.0

<xsl:for-each select="65 to 90">
  <xsl:variable name="letter" select="unicode-to-string(.)"/>

Michael Kay


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


Current Thread