Last active
January 2, 2016 00:49
-
-
Save emchateau/8225773 to your computer and use it in GitHub Desktop.
sélectionne tout sauf le premier et le dernier élément dans une liste
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
title: selectAllExceptFirstAndLast | |
description: sélectionne tout sauf le premier et le dernier élément dans une liste | |
version: xslt 1.0 | |
--> | |
<xsl:for-each select="element[not(position() = (1, last() ))]"> | |
<xsl:value-of select="." separator=", "/> | |
</xsl:for-each> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment