我有以下斜体:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/02/xpath-functions" xmlns:xdt="http://www.w3.org/2005/02/xpath-datatypes">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:variable name="cDate">
<xsl:value-of select="current-dateTime()"/>
</xsl:variable>
<xsl:variable name="fcDate">
<xsl:value-of select="format-dateTime($cDate, [Y0001][M01][D01] )"/>
</xsl:variable>
<xsl:template match="/PublisherBooking">
<dt>
<xsl:attribute name="date"><xsl:value-of select="$fcDate"/></xsl:attribute>
</dt>
</xsl:template>
</xsl:stylesheet>
这使我获得产出(当日为2010年1月12日时):
<?xml version="1.0" encoding="UTF-8"?>
<dt date="2010112"/>
我的问题是,需要以下格式:
<?xml version="1.0" encoding="UTF-8"?>
<dt date="20100112"/>
因此,我如何在月和日实现零婚? 具体来说,格式图[Y0001][M01][D01]有误。
FYI,我正在使用XMLSLT发动机,该发动机的船舶有XMLSpy 2005年。