我想在XSLT中使用castable函數將字符串轉換爲日期。但我得到一個解析錯誤。我正在使用DataPower XI52版本6.0.1.0。 XI52是否支持此功能?無法在XSLT中使用fn:cast和castable
示例XML:
<Input><Date>2011-31-12</Date></Input>
我的XSLT:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fn="http://www.w3.org/2005/xpath-functions"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:template match="/">
<xsl:variable name="Date" select="Input/Date"/>
<xsl:value-of select="fn:cast($Date,'xs:string','xs:date', true())"/>
</xsl:template>
</xsl:stylesheet>
謝謝!邁克爾,我已經在我的代碼中實現了這一點,它工作正常。 – 2014-09-03 12:52:11
@OmkarVenkata請關閉此問題。 – 2014-09-03 14:52:31