Comment obtenir un compteur à l'intérieur de la boucle xsl:for-each qui refléterait le nombre d'éléments courants traités.
Par exemple, mon XML source est
<books>
<book>
<title>The Unbearable Lightness of Being </title>
</book>
<book>
<title>Narcissus and Goldmund</title>
</book>
<book>
<title>Choke</title>
</book>
</books>
Ce que je veux obtenir est :
<newBooks>
<newBook>
<countNo>1</countNo>
<title>The Unbearable Lightness of Being </title>
</newBook>
<newBook>
<countNo>2</countNo>
<title>Narcissus and Goldmund</title>
</newBook>
<newBook>
<countNo>3</countNo>
<title>Choke</title>
</newBook>
</newBooks>
Le XSLT à modifier :
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<newBooks>
<xsl:for-each select="books/book">
<newBook>
<countNo>???</countNo>
<title>
<xsl:value-of select="title"/>
</title>
</newBook>
</xsl:for-each>
</newBooks>
</xsl:template>
</xsl:stylesheet>
La question est donc de savoir ce qu'il faut mettre à la place de ? ??. Existe-t-il un mot-clé standard ou dois-je simplement déclarer une variable et l'incrémenter dans la boucle ?
Comme la question est assez longue, je devrais probablement m'attendre à une réponse d'une ligne ou d'un mot :)