XSLT concat, trasnlate to uppercase



我正在尝试使用以下编码在 XSLT 中连接和传输为大写:

<xsl:value-of select="concat(translate(E_Firstname, ',', E_Lastname, $uppercase)"/>

但是,它只是将 ABCDEFGHIJKLMNOPQRSTUVWXYZ 添加到我试图转换为所有大写字母的字段中。 你能告诉我这个语法应该是什么样子吗?

我猜(!(你想要:

translate(concat(E_Firstname, ',', E_Lastname), $lowercase, $uppercase)

最新更新