xml から変数を取得している xsl ファイルがありますが、それらは相互に認識できないようです。私はそれが範囲の問題であることを知っていますが、私が何を間違っているのかわかりません。
<xsl:template match="one">
<xsl:variable name="varOne" select="@count" />
</xsl:template>
<xsl:template match="two">
<xsl:if test="$varOne = 'Y'">
<xsl:value-of select="varTwo"/>
</xsl:if>
</xsl:template>
ここでは単純化されています。
どんな助けでも大歓迎です。