10

是否可以将30042013(30 April 2013) 之类的字符串转换为日期格式?

所以我可以稍后在函数中使用它format-date

4

2 回答 2

12

就像 Tomalak 说的那样,您可以使用substring()andconcat()构建一个可以转换为的字符串xs:date()(这听起来不像您想要一个 dateTime。)

例子:

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xsl:output method="text"/>
    <xsl:strip-space elements="*"/>

    <xsl:variable name="in" select="'30042013'"/>

    <xsl:template match="/">
        <xsl:variable name="date" select="xs:date(concat(
            substring($in,5,4),'-',
            substring($in,3,2),'-',
            substring($in,1,2)))"/>
        <xsl:value-of select="format-date($date,'[MNn] [D], [Y]')"/>
    </xsl:template>

</xsl:stylesheet>

产生(使用任何 XML 输入)

April 30, 2013
于 2013-05-31T07:41:20.597 回答
7

fn:dateTime($arg1 as xs:date?, $arg2 as xs:time?)将其参数转换为xs:dateTime.

只需使用fn:substring()fn:concat()剪切相关部分并像yyyy-mm-dd之前一样将它们连接到fn:dateTime.

于 2013-05-31T07:18:04.497 回答