在XSLT 1.0中,如何将整个单词大写的首字母大写?

时间:2013-09-25 10:02:45

标签: xml xslt xslt-1.0 capitalize

鉴于我有一套用大写字母表示的月份:

<months>
    <month name="JAN"/>
    <month name="FEB"/>
    <month name="MAR"/>
    <month name="APR"/>
    <month name="MAY"/>
    <month name="JUN"/>
    <month name="JUL"/>
    <month name="AUG"/>
    <month name="SEP"/>
    <month name="OCT"/>
    <month name="NOV"/>
    <month name="DEC"/>
</months>

我如何只把第一个字母大写?

这是我现在的解决方案,但我正在使用CSS来大写它。我想看看如何在纯XSLT 1.0中完成它

<xsl:template match="months">
    <xsl:variable name="month" select="month/@name"/>       
    <xsl:variable name="smallcase" select="'abcdefghijklmnopqrstuvwxyz'" />
    <xsl:variable name="uppercase" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'" />
    <xsl:variable name="monthFormatted"><xsl:value-of select="translate($month, $uppercase, $smallcase)" /></xsl:variable>  
</xsl:template>

/* CSS */
.months {
    text-transform: capitalize;
}

3 个答案:

答案 0 :(得分:3)

提供属性:use-attribute-sets

<xsl:template match="months" xsl:use-attribute-sets="style" >

添加样式:

<xsl:attribute-set name="style">
         <xsl:attribute name="text-transform">capitalize</xsl:attribute>
</xsl:attribute-set>

答案 1 :(得分:2)

好吧

<xsl:param name="uppercase" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>
<xsl:param name="lowercase" select="'abcdefghijklmnopqrstuvwxyz'"/>

<xsl:template match="month">
  <xsl:value-of select="concat(substring(@name, 1, 1), translate(substring(@name, 2), $uppercase, $lowercase))"/>
</xsl:template>

你应该得到例如JanFeb,....

答案 2 :(得分:1)

好的解决方案

concat(translate(substring($Name, 1, 1), 'abcdefghijklmnopqrstuvwxyz', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'), substring($Name,2,string-length($Name)-1))