我在xml文件中有日期,格式如
YYYYMMDD
应用xslt转换我想将格式更改为
MM / DD / YYYY
例如, 传入格式 - 20160513 输出格式 - 05/13/2016
答案 0 :(得分:3)
XSLT 2.0选项......
foreach
答案 1 :(得分:2)
假设:
<date>20160513</date>
以下内容:
<xsl:template match="date">
<xsl:copy>
<xsl:value-of select="substring(., 5, 2)"/>
<xsl:text>/</xsl:text>
<xsl:value-of select="substring(., 7, 2)"/>
<xsl:text>/</xsl:text>
<xsl:value-of select="substring(., 1, 4)"/>
</xsl:copy>
</xsl:template>
将返回:
<date>05/13/2016</date>