xsl-list
[Top] [All Lists]

Re: [xsl] simulating for with foreach

2006-07-05 02:38:22

but there are situations in which you can not use
position() because it doesn't give you the exact node (for example
when you have #text elements randomly beside <node>.

If you only want to iterate over elements, just select elements not text
nodes, then position() will give the position in the sequence of
selected items.

<xsl:for-each seelct="node[position() mod 2 =1]"

does what you want, I think.

David

--~------------------------------------------------------------------
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>
--~--