1

次のようなコードを含む 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>
4

1 に答える 1

2

はい、concat()関数を使用してください:

<xsl:value-of select="concat($a0, $a1, $a2, ..., $an)" />
于 2013-02-04T19:21:44.700 に答える