我有以下xml。
<Name>
<First>john</First>
<Last>smith</Last>
</Name>
我希望将首字母大写,然后输入以下格式。
<FullName>John Smith</FullName>
提前谢谢。
答案 0 :(得分:28)
<强>予。 XSLT 2.0解决方案:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/*">
<FullName><xsl:apply-templates/></FullName>
</xsl:template>
<xsl:template match="First|Last">
<xsl:sequence select=
"concat(upper-case(substring(.,1,1)),
substring(., 2),
' '[not(last())]
)
"/>
</xsl:template>
</xsl:stylesheet>
将此转换应用于提供的XML文档:
<Name>
<First>john</First>
<Last>smith</Last>
</Name>
产生了想要的正确结果:
<FullName>John Smith</FullName>
<强> II。 XSLT 1.0解决方案:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:variable name="vLower" select=
"'abcdefghijklmnopqrstuvwxyz'"/>
<xsl:variable name="vUpper" select=
"'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>
<xsl:template match="/*">
<FullName><xsl:apply-templates/></FullName>
</xsl:template>
<xsl:template match="First|Last">
<xsl:value-of select=
"concat(translate(substring(.,1,1), $vLower, $vUpper),
substring(., 2),
substring(' ', 1 div not(position()=last()))
)
"/>
</xsl:template>
</xsl:stylesheet>
答案 1 :(得分:0)
尝试:
concat(
translate(
substring($Name, 1, 1),
'abcdefghijklmnopqrstuvwxyz',
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
),
substring($Name,2,string-length($Name)-1)
)