How correctly add an "upper-case" expression in already working XSLT code?
(如何在已经正常工作的XSLT代码中正确添加“大写”表达式?)
sample:
(样品:)
<xsl:template match="Document">
<Document ABC="{element1/@attr1}{element2/@attr2}"
DEF="{normalize-space(concat(element1/@attr-3, element1/element2/@attr4, ' ',element1/element2/@attr5, ' '))}"
GHI="{element3/@attr6}">
<xsl:copy-of select="@*" />
<xsl:apply-templates/>
</Document>
</xsl:template>
need to up ABC, DEF, GHI' s values
(需要 提高 ABC,DEF,GHI的值)
Or, its better (or equal) to make this upper-case by the separate template?
(或者,通过单独的模板将此大写字母更好(或相等)吗?)
interesting in both possibilities (两种可能性都很有趣)
ask by Alex translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…