[Home] [By Thread] [By Date] [Recent Entries]
try this stylesheet, i think this would work (if i guessed your
requirements right).
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:template match="/"> <xsl:apply-templates select="root/st"/> </xsl:template> <xsl:template match="st"> <xsl:value-of select="concat(@ix,':')"/> <xsl:apply-templates select="following-sibling::ln[@s=current()/@ix]"/> <xsl:text>
</xsl:text> </xsl:template> <xsl:template match="ln"> <xsl:value-of select="concat(' ', @d)"/> <xsl:apply-templates select="following-sibling::ln[@s=current()/@d]"/> </xsl:template> </xsl:stylesheet> -- Jeff Rolf Schumacher wrote: do I have reached the limits of xpath?
|

Cart



