|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: testing for position of an element and displaying
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
|
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
|

Cart








