xsl-list
[Top] [All Lists]

RE: [xsl] new: how to change value of attributes

2009-11-25 14:16:35

<xsl:function name="f:index-of-node" as="xs:integer*">
  <xsl:param name="nodes" as="node()*"/>
  <xsl:param name="node" as="node()"/>
  <xsl:for-each select="$nodes">
    <xsl:sequence select="position()[current() is $node]"/>
  </xsl:for-each>
</xsl:function>


or (perhaps less obscurely)

 <xsl:function name="f:index-of-node" as="xs:integer*">
   <xsl:param name="nodes" as="node()*"/>
   <xsl:param name="node" as="node()"/>
   <xsl:sequence select="1 to count($nodes)[subsequence($nodes, ., 1) is
$node]">
 </xsl:function>
 
 
 Regards,
 
 Michael Kay
 http://www.saxonica.com/
 http://twitter.com/michaelhkay 




--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>