2

一直在尝试格式化文本以在从 XML 拉到 XSLT 1.0 时显示为 DD-MM-YYYY,因为我知道在使用我所拥有的 xs:date 时它必须在 XSD/XML 中布置为 YYYY-MM-DD用过的。

这是我正在处理的代码,关于我应该如何显示它的任何建议?

XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<events xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="events.xsd">
  <venue id="01" 
         vtitle="ExCeL Exhibition Centre" 
         location="London" 
         telephone="0844 448 7600">
   <event name="Doctor Who 50th Celebration" date="2013-10-22">
    <image>images/doctor50.jpg</image><attribute>Doctor Who Event</attribute>
    <description>A 50th Anniversary musical bonanza for Doctor Who.</description>
    <ticket_price type="adult" status="available">&#163;25.00</ticket_price>
    <ticket_price type="child" status="none">&#163;11.00</ticket_price>
    <ticket_price type="junior" status="available">&#163;0.00</ticket_price>
    <email>info@roundhouselondon.com</email>
</event>
</venue>

XSD

<xs:attribute name="date" type="xs:date"/>

XSLT

<xsl:element name="date"><xsl:value-of select="@date"/></xsl:element>

HTML

<date>2013-10-22</date>
4

5 回答 5

9

另一种以 dd/mm/yyyy 形式生成日期的简单解决方案

<xsl:value-of select="
  concat(substring(@date, 9, 2), 
         '/', 
         substring(@date, 6, 2),
         '/', 
         substring(@date, 1, 4))"/>
于 2013-11-04T00:45:22.027 回答
4

对于 1.0 和 2.0,我会使用与 @Stormtroopr 提供的不同的解决方案。

在 2.0 中使用

format-date(xs:date($date), '[D01]-[M01]-[Y0001]')

在 1.0 中使用

concat(substring(., 9, 2), 
         '-', 
         substring(., 6, 2), 
         '-', 
         substring(., 1, 4))

为了将来参考,请告诉我们您使用的是哪个版本的 XSLT。1.0 和 2.0 都是通用的,解决方案也往往不同。

于 2013-11-04T09:08:36.847 回答
1

我将它用于 SharePoint,我像这样解决了它

<xsl:value-of select=" ddwrt:FormatDate(/dsQueryResponse/Rows/Row/@Date,3,1)"/>
于 2014-06-04T11:34:45.737 回答
0

在 XSLT 2.0 中,您可以使用 tokenize 来拆分字符串,然后只使用xsl:for-eachandxsl:sort来反转它。(我现在没有 XSLT2.0 引擎,但这与您需要的非常接近)。

<xsl:for-each select="tokenize(@date,'-'">
    <xsl:sort select="position()" data-type="number" order="descending"/>
    <xsl:value-of select="."/>
</xsl:for-each>

在 XSLT 1.0 中,您使用...递归!

这是它的症结所在,这需要一个日期,然后在第一个连字符 ( ) 之前和之后搜索字符串-。通常,您会substring-before在处理完之后来subtring-after保留订单,但在这里我们切换它们以最终反转输出。

<xsl:template name="reverse-date">
    <xsl:param name="text" select="."/>
    <xsl:choose>
        <xsl:when test="contains($text, '-')">
            <xsl:call-template name="reverse-date">
                <xsl:with-param name="text" select="substring-after($text, '-')"/>
            </xsl:call-template>
            <xsl:text>-</xsl:text>
            <xsl:value-of select="substring-before($text, '-')" />
        </xsl:when>
        <xsl:otherwise>
           <xsl:value-of select="$text"/>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

下面是完整的模板,它将根据您的上述 XML 文档为您反转日期。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <xsl:apply-templates select="//event"/>
</xsl:template>

<xsl:template match="event">
  <xsl:element name="date">
    <!--
         ** Call this template when you want to reverse the date **
    -->
    <xsl:call-template name="reverse-date">
     <xsl:with-param name="text" select="@date" />
    </xsl:call-template>
  </xsl:element>
</xsl:template>

<xsl:template name="reverse-date">
    <xsl:param name="text" select="."/>
    <xsl:choose>
        <xsl:when test="contains($text, '-')">
           <xsl:value-of select="substring-before($text, '-')" />
            <xsl:text>-</xsl:text>
            <xsl:call-template name="reverse-date">
                <xsl:with-param name="text" select="substring-after($text, '-')"/>
            </xsl:call-template>
        </xsl:when>
        <xsl:otherwise>
           <xsl:value-of select="normalize-space($text)"/>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>
</xsl:stylesheet>

在您的代码中

你需要改变这个:

<xsl:element name="date"><xsl:value-of select="@date"/></xsl:element>

对此:

<xsl:element name="date">
  <xsl:call-template name="reverse-date">
    <xsl:with-param name="text" select="@date" />
  </xsl:call-template>
</xsl:element>
于 2013-11-03T23:20:02.543 回答
-1

这段代码可能有帮助:

    for children in child:
        if children.tag  == "dateTime":
            list_dateTime = [children.text] 
            lista=list_dateTime             
            simbolo=('/')
            simboloh=(':')            
            Lis=str(lista)
            dd=Lis[2:4]
            mm=Lis[4:6]
            yy=Lis[6:10]
            hh=Lis[10:12]
            mms=Lis[12:14]
            data=dd + simbolo + mm+  simbolo + yy+  simbolo +hh+ simboloh + mms
        if children.tag == "field":
            for subchildren in children:
                if subchildren.tag == "id":
                    list_id = [subchildren.text]
                if subchildren.tag =="value":
                    list_value = [subchildren.text]
                    arquivo.writelines('\n')
                    arquivo.writelines(list_period)
                    arquivo.writelines(',')
                    arquivo.writelines(data)
                    arquivo.writelines(',')
                    arquivo.writelines(list_id)
                    arquivo.writelines(',')
                    arquivo.writelines(list_value)
于 2021-06-15T14:03:59.133 回答