RE: [xsl] Sorting alphabetical entries.

Subject: RE: [xsl] Sorting alphabetical entries.
From: Ben Trafford <ben@xxxxxxxxxxxxx>
Date: Tue, 06 May 2003 17:18:03 -0400

At 04:49 PM 5/6/2003 -0400, Blaise, Isaac J wrote:
something like
<xsl:template match="entry">
 <xsl:if test="substring(string,start,length)='foo'">
        <xsl:apply-templates/>
 </xsl:if>
</xsl:template>

Actually, I used this:


<xsl:template match="entry">
<xsl:if test="starts-with(title, 'A') or starts-with(episode, 'A')">
<xsl:apply-templates/>
</xsl:if>
</xsl:template>


Yay for starts-with!

--->Ben


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



Current Thread