|
Subject: Re: [xsl] fixed position From: James Melton <james.melton@xxxxxxxxxxx> Date: Wed, 01 Aug 2001 16:57:24 -0400 |
Oops as always I have missed something. The first example does not work
in every case. Instead try:
<xsl:template match="/">
<xsl:for-each select="data/item[text() != 'Solution']">
<xsl:value-of select="." />
<xsl:text> </xsl:text>
<xsl:if test="position() = 3">
<xsl:text>Solution </xsl:text>
</xsl:if>
</xsl:for-each>
</xsl:template>
James Melton wrote:
>
> <xsl:template match="/">
> <xsl:for-each select="data/item">
> <xsl:if test="not(. = 'Solution')">
> <xsl:value-of select="." />
> <xsl:text> </xsl:text>
> <xsl:if test="position() = 4">
> <xsl:text>Solution </xsl:text>
> </xsl:if>
> </xsl:if>
> </xsl:for-each>
> </xsl:template>
>
____________________________________________________________
James Melton CyLogix
609.750.5190 609.750.5100
james.melton@xxxxxxxxxxx www.cylogix.com
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: [xsl] fixed position, James Melton | Thread | RE: [xsl] fixed position, Meltem Kogelbauer |
| Re: [xsl] Ancestors and Imported do, Wendell Piez | Date | Re: [xsl] Ancestors and Imported do, Wendell Piez |
| Month |