Modules | Implementer Page: set.leading.html Function Syntaxnode-set set:leading(node-set, node-set) Template Syntax<xsl:call-template name="set:leading"> <xsl:with-param name="nodes" select="node-set" /> <xsl:with-param name="node" select="node-set" /> </xsl:call-template>
The
The Implementations
The following XSLT processors support
Implementations of ExamplesFunctionThe following example shows how to use the Source<doc> <a /> <b /> <c /> <d /> <e /> <f /> <g /> <h /> </doc> Stylesheet<xsl:template match="doc"> <out> ; <xsl:value-of select="count(set:leading(*, g))" /> ; <xsl:value-of select="count(set:leading(*, b))" /> ; <xsl:value-of select="count(set:leading(*, d|f|h))" /> ; <xsl:value-of select="count(set:leading(*, a|f|h))" /> ; <xsl:value-of select="count(set:leading(*, x))" /> ; <xsl:value-of select="count(set:leading(x, *))" /> ; <xsl:value-of select="count(set:leading(a|b|c, h))" /> ; </out> </xsl:template> Result<out>; 6; 1; 3; 0; 8; 0; 0; </out> |
http://www.exslt.org/set/functions/leading/index.html last modified 2002-11-12