パラメータを使用してテンプレートを作成し、このパラメータを使用してその名前の要素を作成したいと思います。
これはどのように行うことができますか?
これは機能しない例ですが、私がやりたいことのアイデアを提供します。
<xsl:call-template name="parseOneValue">
<xsl:with-param name="name" select="'addr'" />
</xsl:call-template>
<xsl:template name="parseOneValue">
<xsl:param name="name"/>
<xsl:element name="$name">
<xsl:attribute name="at">local
</xsl:attribute>
</xsl:element>
</xsl:template>