次のようなコードを含む XSL 変換があるとします。
<xsl:variable name="a0" select="some expression"/>
<xsl:variable name="a1" select="some expression"/>
<xsl:variable name="a2" select="some expression"/>
...
<xsl:variable name="an" select="some expression"/>
...そして、各変数に関連付けられたテキスト値を出力したいのですが、次の方法よりもエレガントで簡潔な方法はありますか?
1.
<xsl:value-of select="$a0"/>
<xsl:value-of select="$a1"/>
<xsl:value-of select="$a2"/>
...
<xsl:value-of select="$an"/>
2.
<xsl:foreach select="$a0 | $a1 | $a2 | ... | $an>
<xsl:value-of select="."/>
</xsl:foreach>