0

我是 xslt 的新手。我一直在努力使用 dateTime 格式。我需要从 12/2/2011 2:57:18 AM 转换为 12022011T02:57:18

你怎么能做到这一点?我真的很感激你的帮助。一个很好的例子,拜托!谢谢你的时间 :)

4

2 回答 2

0

这将做到:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" indent="yes" omit-xml-declaration="yes" />

  <xsl:template match="/">
    <xsl:call-template name="FormatDateTime">
      <xsl:with-param name="dateTime" select="'12/2/2011 2:57:18 AM'" />
    </xsl:call-template>
  </xsl:template>

  <xsl:template name="FormatDateTime">
    <xsl:param name="dateTime" />

    <xsl:call-template name="FormatDate">
      <xsl:with-param name="date" select="substring-before($dateTime, ' ')" />
    </xsl:call-template>
    <xsl:text>T</xsl:text>
    <xsl:call-template name="FormatTime">
      <xsl:with-param name="time" select="substring-after($dateTime, ' ')" />
    </xsl:call-template>
  </xsl:template>

  <xsl:template name="FormatTime">
    <xsl:param name="time" />
    <xsl:variable name="timeOnly" select="substring-before($time, ' ')" />
    <xsl:variable name="amPm" select="substring-after($time, ' ')" />
    <xsl:variable name="hour" select="substring-before($time, ':')" />
    <xsl:variable name="hourAdjusted" select="$hour mod 12 + 12 * ($amPm = 'PM')" />
    <xsl:variable name="afterHour" select="substring-after($timeOnly, ':')" />
    <xsl:variable name="minutes" select="substring-before($afterHour, ':')" />
    <xsl:variable name="seconds" select="substring-after($afterHour, ':')" />

    <xsl:value-of select="concat(format-number($hourAdjusted, '00'), ':', 
                                 format-number($minutes, '00'), ':',
                                 format-number($seconds, '00'))"/>
  </xsl:template>

  <xsl:template name="FormatDate">
    <xsl:param name="date" />
    <xsl:variable name="month" select="substring-before($date, '/')" />
    <xsl:variable name="afterMonth" select="substring-after($date, '/')" />
    <xsl:variable name="day" select="substring-before($afterMonth, '/')" />
    <xsl:variable name="year" select="substring-after($afterMonth, '/')" />

    <xsl:value-of select="concat(format-number($month, '00'),
                                 format-number($day, '00'),
                                 $year)"/>
  </xsl:template>
</xsl:stylesheet>

这个 XSLT 里面有一个示例值,所以当它运行时,它会产生:

12022011T02:57:18

但是你确定你希望结果格式是 MMddyyyy,而不是 yyyy-MM-dd?如果你真的想要后者,你可以改变这部分:

    <xsl:value-of select="concat(format-number($month, '00'),
                                 format-number($day, '00'),
                                 $year)"/>

对此:

    <xsl:value-of select="concat($year, '-',
                                 format-number($month, '00'), '-'
                                 format-number($day, '00'))"/>
于 2013-03-11T13:22:01.840 回答
0

xml 示例

<?xml version="1.0" encoding="utf-8"?>
<root>
   <mydate atribdate="12/05/2010 22:10:10">01/10/2012 12:33:00</mydate>
   <mydate atribdate="">12/12/2012 12:33:00</mydate>    
</root> 

xsl 示例 xslt 1.0

 <?xml version="1.0"?>
  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
     <xsl:template match = "/">
        <xsl:apply-templates select="root/mydate" />                       
     </xsl:template>
     <xsl:template match="mydate">        
             date element---><xsl:value-of select="translate(translate(.,'/',''),' ','T')"/>         
     date attirbute---><xsl:value-of select="translate(translate(@atribdate,'/',''),' ','T')"/> 
     </xsl:template>
  </xsl:stylesheet> 

输出xml

<?xml version="1.0" encoding="UTF-8"?>        
    date element---&gt;01102012T12:33:00         
    date attirbute---&gt;12052010T22:10:10        
    date element---&gt;12122012T12:33:00         
date attirbute---&gt;
于 2013-03-11T14:34:04.147 回答