我在xml中有这个,我想使用xslt转换文档。如何将此dateServed字符串转换为日期? <NotificationEvent dateServed="06/20/2014"</NotificationEvent>
我希望结果为2014/06/20
答案 0 :(得分:1)
您不需要将"06/20/2014"
转换为日期,以便格式化&#34;它为"2014/06/20"
。您只需使用字符串函数重新排列它:
<xsl:value-of select="concat(substring(@dateServed, 7), '/', substring(@dateServed, 1, 5))"/>