是否可以将30042013
(2013年4月30日)等字符串转换为日期格式?
所以我稍后可以在format-date
答案 0 :(得分:10)
像Tomalak所说,你可以使用substring()
和concat()
来构建一个可以作为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
答案 1 :(得分:6)
fn:dateTime($arg1 as xs:date?, $arg2 as xs:time?)
会将其参数转换为xs:dateTime
。
只需使用fn:substring()
和fn:concat()
剪切相关部分,然后将其作为yyyy-mm-dd
加入,然后再将其传递给fn:dateTime
。