XSLT 2.0;比xsl更好的解决方案:在xsl:function里面选择不同的日期格式吗?

时间:2015-06-25 16:37:53

标签: xml xslt xslt-2.0

我正在尝试改进我刚才写的XSLT代码。我有一个将日期转换为XSLT格式的函数。

我有两个案例:

  • 日期采用德语格式(例如,10.05.2014)
  • 日期格式不同

目前我在函数内使用xsl:choose来解决这个问题。当日期包含点时,请执行此操作,否则执行此操作。

有更优雅的方法吗?我的方式对我来说似乎有点笨拙。我可以在这里使用某种函数重载吗?

CODE

<xsl:function name="ab:convDate">

    <xsl:param name="date" as="xs:string"/>

    <xsl:choose>
        <xsl:when test="contains($date,'.')">
            <xsl:analyze-string select="$date" regex="([0-9]+).([0-9]+).([0-9]+) ([0-9]+):([0-9]+)">
                <xsl:matching-substring>
                    <xsl:variable name="month" select="number(regex-group(2))"/>
                    <xsl:variable name="day" select="number(regex-group(1))"/>
                    <xsl:variable name="year" select="number(regex-group(3))"/>
                    <xsl:variable name="hours" select="number(regex-group(4))"/>
                    <xsl:variable name="minutes" select="number(regex-group(5))"/>
                    <xsl:variable name="dateTime" select="xs:dateTime( 
                                            concat($year, '-', 
                                            format-number($month, '00'), '-', 
                                            format-number($day, '00'), 'T', 
                                            format-number($hours, '00'), ':', 
                                            format-number($minutes, '00'), ':00Z')  
                                )"/>
                    <xsl:value-of select="$dateTime"/>
                </xsl:matching-substring>
            </xsl:analyze-string>
        </xsl:when>

        <xsl:otherwise>
            <xsl:analyze-string select="$date" regex="([0-9]+)-([0-9]+)-([0-9]+) ([0-9]+):([0-9]+):([0-9]+)">
                <xsl:matching-substring>
                    <xsl:variable name="year" select="number(regex-group(1))"/>
                    <xsl:variable name="month" select="number(regex-group(2))"/>
                    <xsl:variable name="day" select="number(regex-group(3))"/>
                    <xsl:variable name="hours" select="number(regex-group(4))"/>
                    <xsl:variable name="minutes" select="number(regex-group(5))"/>
                    <xsl:variable name="seconds" select="number(regex-group(6))"/>
                    <xsl:variable name="dateTime" select="xs:dateTime( 
                                            concat($year, '-', 
                                            format-number($month, '00'), '-', 
                                            format-number($day, '00'), 'T', 
                                            format-number($hours, '00'), ':', 
                                            format-number($minutes, '00'), ':', 
                                            format-number($seconds, '00'),'Z')  
                                )"/>
                    <xsl:value-of select="$dateTime"/>
                </xsl:matching-substring>
            </xsl:analyze-string>

        </xsl:otherwise>

    </xsl:choose>

</xsl:function>

USAGE

<file date="{ab:convDate(current-group()[7])}"
</file>

应用于此元素:

<el>2014-02-13 13:42:23</el>

<el>13.02.2014 13:42:23</el>

所以current-group()[7]等于两个日期字符串中的一个。

1 个答案:

答案 0 :(得分:1)

更好的解决方案可能是定义两个匹配两种格式的模板规则:

<xsl:template match="a[contains(., '.')]">

<xsl:template match="a[contains(., '-')]">

但这确实是个人偏好的问题。