1. ホーム
  2. xml

[解決済み] xsl:for-eachループ内のカウンタ

2023-03-05 09:04:48

質問

xsl:for-eachループの中で、現在の要素の処理数を反映するカウンターを取得するにはどうしたらよいでしょうか。

例えば、私のソースXMLは次のとおりです。

<books>
    <book>
        <title>The Unbearable Lightness of Being </title>
    </book>
    <book>
        <title>Narcissus and Goldmund</title>
    </book>
    <book>
        <title>Choke</title>
    </book>
</books>

取得したいのは

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

修正するXSLT。

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

そこで問題なのは、"?"の代わりに何を入れるかです。何か標準的なキーワードがあるのでしょうか、それとも単に変数を宣言し、ループ内でそれをインクリメントしなければならないのでしょうか?

質問はかなり長いので、私はおそらく1行または1単語の答えを期待する必要があります:)

どのように解決するのですか?

position() . e.g:

<countNo><xsl:value-of select="position()" /></countNo>