当前位置 : 主页 > 网页制作 > xml >

xml – 在xslt中格式化日期

来源:互联网 收集:自由互联 发布时间:2021-06-13
我正在尝试在xslt中格式化某个日期格式.这是格式: 2012-7-19 我想将它转换为xslt中的数值进行排序,以便上面的内容变为: 20120719 问题是单个月/天的前面没有0.所以我需要以某种方式在单
我正在尝试在xslt中格式化某个日期格式.这是格式:

2012-7-19

我想将它转换为xslt中的数值进行排序,以便上面的内容变为:

20120719

问题是单个月/天的前面没有0.所以我需要以某种方式在单个数字月/日前添加,但不要在有两位数的月/日前添加.有谁知道我怎么做到这一点?

到目前为止我有这个:

<xsl:value-of select="concat(
    substring(substring-after(substring-after(./AirDate, '/'),'/'),0,5),
    substring(substring-after(./AirDate, '/'), 0, 3),
    substring-before(./AirDate, '/'))"/>

但偶尔会出现一位数的天数,并且不会在单个数字的月份/天之前输入0

我没有能力在将数据源传递给xslt之前更改数据源,我必须使用xslt 1.0版.

我认为format-number可以解决问题.

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes" />

    <xsl:variable name="date" select="'2007-3-19'" />
    <xsl:template name="format_date" >
        <xsl:param name ="date" />
        <xsl:variable name ="year" select="substring-before($date, '-')" />
        <xsl:variable name ="month_and_day" select="substring-after($date, '-')" />
        <xsl:variable name ="day" select="substring-after($month_and_day, '-')" />
        <xsl:variable name ="month" select="substring-before($month_and_day, '-')" />
        <xsl:value-of select="$year"/>
        <xsl:value-of select="format-number($month, '00')"/>
        <xsl:value-of select="format-number($day, '00')"/>
    </xsl:template>

    <xsl:template match="/" >
        <xsl:call-template name="format_date" >
            <xsl:with-param name ="date" select="$date"/>
        </xsl:call-template>
    </xsl:template>
</xsl:stylesheet>
网友评论