Re: [xsl] testing for position of an element and displaying it accordingly

Subject: Re: [xsl] testing for position of an element and displaying it accordingly
From: Alexey Nickolaenkov <nikolaenkov@xxxxxxxxxxxx>
Date: Fri, 19 Jan 2007 18:16:02 +0300
Hi man
m> Please let me know if this is possible?
that's possible.

if your input looks like above and you want to produce

m> Test
m> Test2
m> 1)test test
m> test3

the following rules will suit you

<xsl:template match="/">
   <xsl:copy>
      <xsl:apply-templates select="r1"/>
   </xsl:copy>
</xsl:template>

<xsl:template match="r1">
   <xsl:apply-templates select="node()"/>
</xsl:template>

<xsl:template match="a">
   <xsl:value-of select="."/>
</xsl:template>

<xsl:template match="b">
   <xsl:text>1)</xsl:text>
   <xsl:value-of select="."/>
</xsl:template>


but I dont think that this is what you really want.. Can you describe
the desired xml output?


-- 
Alexey                            mailto:nikolaenkov@xxxxxxxxxxxx

Current Thread