Description
The functx:distinct-attribute-names function returns the distinct set of attribute names that exist on nodes in $nodes or their descendants.
Arguments and Return TypeName | Type | Description |
$nodes |
node()* |
the root to start from |
return value |
xs:string* |
XSLT Function DeclarationSee XQuery definition. | <xsl:function name="functx:distinct-attribute-names" as="xs:string*"
xmlns:functx="http://www.functx.com">
<xsl:param name="nodes" as="node()*"/>
<xsl:sequence select="
distinct-values($nodes//@*/name(.))
"/>
</xsl:function>
|
Examples<xsl:variable name="in-xml" as="item()*"> | | <authors a1="xyz">
<author a2="abc">
<fName a3="def">Kate</fName>
<lName>Jones</lName>
</author>
<author>
<fName a3="def">John</fName>
<lName>Doe</lName>
</author>
</authors> |
| </xsl:variable> |
XPath Example | Results |
---|
functx:distinct-attribute-names($in-xml) |
('a1', 'a2', 'a3') |
See AlsoHistory |
Recommended Reading:
|