Description
The functx:first-node function returns the node in the sequence that appears first in document order. If nodes in the sequence are from multiple documents, which document is first is implementation-dependent.
Arguments and Return TypeName | Type | Description |
$nodes |
node()* |
the sequence of nodes |
return value |
node()? |
XSLT Function DeclarationSee XQuery definition. | <xsl:function name="functx:first-node" as="node()?"
xmlns:functx="http://www.functx.com">
<xsl:param name="nodes" as="node()*"/>
<xsl:sequence select="
($nodes/.)[1]
"/>
</xsl:function>
|
Examples<xsl:variable name="in-xml" as="item()*"> | | <authors>
<author>
<fName>Kate</fName>
<lName>Jones</lName>
</author>
<author>
<fName>John</fName>
<lName>Doe</lName>
</author>
</authors> |
| </xsl:variable> |
XPath Example | Results |
---|
functx:first-node($in-xml//fName) |
<fName>Kate</fName> |
functx:first-node(
($in-xml//lName,
$in-xml//fName) ) |
<fName>Kate</fName> |
See AlsoHistory |
Recommended Reading:
|