xsl-list
[Top] [All Lists]

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

2007-01-19 08:17:07
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(_at_)actimind(_dot_)com


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--