1

来自(Twitter 格式示例)

Tue, 15 May 2012 15:40:34 +0000

(ISO 格式示例)

2005-12-01T13:45:00

使用 XSLT


这是一个 XML 片段

<item>
     <title>It's called "Kangaroo Care" - what parents can do to create a special bond and improve the health of their newborns: http://t.co/8MV8FpM4</title>
        <link>http://twitter.com/ProvHealth/statuses/202423233104973826</link>
        <description>It's called "Kangaroo Care" - what parents can do to create a special bond and improve the health of their newborns: &lt;a href="http://t.co/8MV8FpM4"&gt;http://t.co/8MV8FpM4&lt;/a&gt;</description>
     <pubDate>Tue, 15 May 2012 15:40:34 +0000</pubDate>
        <guid>http://twitter.com/ProvHealth/statuses/202423233104973826</guid>
        <author>ProvHealth@twitter.com (Providence Oregon)</author>
     <media:content type="image/jpg" height="48" width="48" url="http://a0.twimg.com/profile_images/748948431/cross_normal.png"/>
     <google:image_link>http://a0.twimg.com/profile_images/748948431/cross_normal.png</google:image_link>
        <twitter:metadata>
         <twitter:result_type>recent</twitter:result_type>
     </twitter:metadata>
 </item>
4

2 回答 2

1

这里有一些关于如何解决这个问题的想法。

  1. 您可以像本例中那样 进行子字符串整理:通过 XSLT 格式化 XML 中的日期。您可能必须在一周中的几天和几个月中为自己创建一些“可枚举”。

  2. XPath 2.0 为您提供了XSD 类型的构造函数,您可以从这些函数中获得一些关于子字符串处理的帮助。

  3. 如果您的转换器支持EXSLT,您可以使用 日期/时间扩展功能

  4. EXSLT 还具有正则表达式支持,您可以使用它来将 twitter 日期解析为块,以便进一步转换为 ISO 日期。

  5. 您可以使用任何技术编写定义扩展函数来驱动 XSLT 为您运行转换。

话虽如此,没有一种单一功能的“简单”方法可以完成您在 XSLT 中需要的功能。

于 2012-05-15T18:15:18.880 回答
1

这会将 d/m/yyyy hh:mm:ss AM 转换为 ISO 日期。还没有时间,但这将是这个的延续。日期和月份可能是一两个字符,这一事实使情况复杂化。

  <!--Convert from 'd/m/yyyy hh:mm:ss AM' to YYYY-MM-DD-->
  <xsl:template name="ISODate">
    <xsl:param name="Date" />
    <xsl:param name="Year" />
    <xsl:param name="Month" />
    <xsl:param name="Day" />

    <xsl:choose>
      <xsl:when test="not($Month)">
        <xsl:call-template name="ISODate">
          <xsl:with-param name="Month" select="substring(concat('0',substring-before($Date,'/')), string-length(concat('0',substring-before($Date,'/'))) - 1, 2)" />
          <xsl:with-param name="Date" select="substring-after($Date,'/')" />
        </xsl:call-template>
      </xsl:when>
      <xsl:when test="not($Day)">
        <xsl:call-template name="ISODate">
          <xsl:with-param name="Month" select="$Month" />
          <xsl:with-param name="Day" select="substring(concat('0',substring-before($Date,'/')), string-length(concat('0',substring-before($Date,'/'))) - 1, 2)" />
          <xsl:with-param name="Date" select="substring-after($Date,'/')" />
        </xsl:call-template>
      </xsl:when>
      <xsl:when test="not($Year)">
        <xsl:call-template name="ISODate">
          <xsl:with-param name="Month" select="$Month" />
          <xsl:with-param name="Day" select="$Day" />
          <xsl:with-param name="Year" select="substring-before($Date,' ')" />
        </xsl:call-template>
      </xsl:when>
      <xsl:otherwise>
        <xsl:value-of select="concat($Year,'-',$Month,'-',$Day)"/>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>
于 2013-09-24T20:06:45.350 回答