[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: comma separated data

Subject: RE: comma separated data
From: "Selva, Francis" <Francis.Selva@xxxxxxxxxxxxxxx>
Date: Thu, 6 Apr 2000 13:31:08 -0700
comma separated xml space separated
Curt,
     Did u try executing your example?.Cause displayyear is not a variable name.So it may throw an error.
 
Francis
-----Original Message-----
From: Arnold, Curt [mailto:Curt.Arnold@xxxxxxxxxxxxx]
It should be possible using recursive named template calls, something like
 
<xsl:template name="displayyear">
    <xsl:param name="yearlist">
    <xsl:variable name="year" select="substring-before($yearlist,',')"/>
    <xsl:choose>
        <xsl:when test="string-length($year) &gt; 0">
            <td><xsl:value-of select="$year"/></td>
            <xsl:call-template name="displayyear">
                <xsl:with-param name="yearlist"><xsl:value-of select="substring-after($yearlist,',')"/></xsl:with-param>
            </xsl:call-template>
       </xsl:when>
        <xsl:otherwise>
             <td><xsl:value-of select="$displayyear"/></td>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>
 
However, since the XML Schema list datatypes only support space-separated lists, you may want to consider changing your source document to not use comma delimiters.
 
Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.