我有以下xml:
<root>
<Test>tested</Test>
</root>
现在,我想使用XSLT将格式为YYYY-MM-DD-HH.MI.Sec.Ms的当前日期时间戳添加到上述xml的新节点。例如,我的结果xml应如下所示:
<root>
<Test>tested</Test>
<dateTimeStamp>2014-05-21-01.25.32.000000</dateTimeStamp>
</root>
有人可以帮我吗?
您能否为XSLT 1.0添加代码,以便找到差异?我会给那个+1。
答案 0 :(得分:1)
尝试类似:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="2.0">
<xsl:strip-space elements="*"/>
<xsl:output indent="yes" omit-xml-declaration="yes"/>
<xsl:template match="/root">
<xsl:variable name="timeNoMs" select="translate(substring-before(substring-before(string(current-time()), '+'), '.'), ':', '.')"/>
<xsl:variable name="timeMs" select="format-number(number(substring-after(substring-before(string(current-time()), '+'), '.')), '##0000')"/>
<xsl:copy>
<xsl:copy-of select="node()|@*"/>
<dateTimeStamp><xsl:value-of select="concat(substring-before(string(current-date()), '+'), '-', $timeNoMs, $timeMs)"/></dateTimeStamp>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
答案 1 :(得分:1)
您可以使用format-dateTime()
...
XSLT 2.0
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/*">
<xsl:copy>
<xsl:copy-of select="@*|node()"/>
<dateTimeStamp>
<xsl:value-of select="format-dateTime(current-dateTime(),'[Y0001]-[M01]-[D01]-[H01].[m01].[s].[f]')"/>
</dateTimeStamp>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
<强>输出强>
<root>
<Test>tested</Test>
<dateTimeStamp>2014-05-21-01.44.58.312</dateTimeStamp>
</root>
有关详细信息,请参阅http://www.w3.org/TR/2014/REC-xpath-functions-30-20140408/#rules-for-datetime-formatting。