xml – 在XSLT中将字符串转换为Date格式

前端之家收集整理的这篇文章主要介绍了xml – 在XSLT中将字符串转换为Date格式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在这个格式的XML文件中有一个日期(字符串)值:
Tue Apr 17 03:12:47 IST 2012

我想使用XSL转换将字符串/日期转换为以下格式:

4/17/2012 03:12:47 AM

我怎样才能在我的XSL转换中做到这一点?

@H_404_12@ 如果你正在使用

> XSLT 1.0版本,使用EXSLT – date:format-date日期扩展名
> XSLT 2.0版本,使用built-in: Formatting Dates and Times日期扩展名

但我的建议是

Have a standard XSD datetime format on XML,on the code-behind (that is,on rendering time) you can format as you like.

更新:

始终通过XSLT处理XML,日期应采用标准XSD格式.目前您的输入不是标准格式,因此会引发错误.

例:

<xsl:variable name="dt" as="xs:dateTime" select="xs:dateTime('2012-10-21T22:10:15')"/>
<xsl:value-of select="format-dateTime($dt,'[Y0001]/[M01]/[D01]')"/>

OUTPUT:

2012年10月21日

原文链接:https://www.f2er.com/xml/293071.html

猜你在找的XML相关文章