|
[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
[Recent Entries]
[Reply To This Message]
RE: comma separated data
Curt,
Did u try executing your
example?.Cause displayyear is not a variable name.So it may throw an
error.
Francis
<xsl:template
name="displayyear">
<xsl:param
name="yearlist">
<xsl:variable name="year"
select="substring-before($yearlist,',')"/>
<xsl:choose>
<xsl:when test="string-length($year) > 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.
|
PURCHASE STYLUS STUDIO ONLINE TODAY!
Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!
Download The World's Best XML IDE!
Accelerate XML development with our award-winning XML IDE - Download a free trial today!
Subscribe in XML format
| RSS 2.0 |
|
| Atom 0.3 |
|
|