我正在尝试创建一个变量,该变量以 init cap 形式存储输入字符串 (TypeInput) 的值。这个新变量将在我的样式表的不同位置使用。我创建了一个模板,我调用它来将输入字符串转换为 init cap 形式。但是,当我运行样式表时,生成的变量 TypeInputInitCap 在调试器中显示为 NodeSet(1) 并且不会在我的输出中输出文本。任何想法为什么?请参阅下面的示例。
<xsl:variable name="TypeInputInitCap">
<xsl:call-template name="ConvertToInitCapString">
<xsl:with-param name="str" select="$TypeInput"></xsl:with-param>
</xsl:call-template>
</xsl:variable>
<xsl:template name="ConvertToInitCapString">
<xsl:param name="str"></xsl:param>
<!-- Extract each component of the name delimited by . -->
<xsl:variable name="TokenNodeSet">
<xsl:for-each select="tokenize($str, '.')">
<!-- Init cap each component -->
<xsl:value-of select="concat(upper-case(substring(.,1,1)), lower-case(substring(.,2)))"></xsl:value-of>
</xsl:for-each>
</xsl:variable>
<xsl:for-each select="$TokenNodeSet">
<xsl:value-of select="."></xsl:value-of>
<xsl:if test="not(last())">
<xsl:text>.</xsl:text>
</xsl:if>
</xsl:for-each>
</xsl:template>