This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Selection of every second node


Hi,

I hope you can help me. How can I make a template that match with every
second node?

<root>
	<node>trash</node>
	<node>text</node>
	<node>trash</node>
	<node>text</node>
	<node>trash</node>
	<node>text</node>
</root>

and I would use a template like this:

<xsl:template match="node[every-second()]">
	make something
</xsl:template>

and the result should be:

text
text
text

I tried it with variables but it doesnt works.

Thanks for any hints.

Best regards
Conny

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]