XSLT排序数组值

时间:2016-11-07 06:55:30

标签: arrays xml sorting xslt

我是XSLT的新手。我想通过XSLT对以下xml段进行排序。有谁知道如何对内部数组值进行排序?

Controller

我想按升序排序实际值。

提前致谢。

3 个答案:

答案 0 :(得分:1)

如果您使用的是Xalan-J处理器,您可以利用EXSLT str:tokenize()扩展功能,只需执行以下操作:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:str="http://exslt.org/strings"
extension-element-prefixes="str">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<!-- identity transform -->
<xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="Array">
    <xsl:copy>
        <xsl:copy-of select="@*"/>
        <xsl:for-each select="str:tokenize(., ' ')">
            <xsl:sort select="." data-type="number" order="ascending"/>
            <xsl:value-of select="."/>
            <xsl:text> </xsl:text>
        </xsl:for-each>
    </xsl:copy>
</xsl:template>

</xsl:stylesheet>

否则,您必须使用递归命名模板对值进行标记,然后将结果转换为节点集,然后才能对其进行排序:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common"
extension-element-prefixes="exsl">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<!-- identity transform -->
<xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="Array">
    <xsl:variable name="values">
        <xsl:call-template name="tokenize">
            <xsl:with-param name="text" select="."/>
        </xsl:call-template>
    </xsl:variable>
    <xsl:copy>
        <xsl:copy-of select="@*"/>
        <xsl:for-each select="exsl:node-set($values)/value">
            <xsl:sort select="." data-type="number" order="ascending"/>
            <xsl:value-of select="."/>
            <xsl:text> </xsl:text>
        </xsl:for-each>
    </xsl:copy>
</xsl:template>

<xsl:template name="tokenize">
    <xsl:param name="text"/>
    <xsl:param name="delimiter" select="' '"/>
        <xsl:variable name="token" select="substring-before(concat($text, $delimiter), $delimiter)" />
        <xsl:if test="$token">
            <value>
                <xsl:value-of select="$token"/>
            </value>
        </xsl:if>
        <xsl:if test="contains($text, $delimiter)">
            <!-- recursive call -->
            <xsl:call-template name="tokenize">
                <xsl:with-param name="text" select="substring-after($text, $delimiter)"/>
            </xsl:call-template>
        </xsl:if>
</xsl:template>

</xsl:stylesheet>

答案 1 :(得分:-1)

一种解决方案是形成一个变量,其中每个标记都包含值。然后你可以通过方法对它进行排序,这也适用于xslt 1.0中的数字。正如我所看到的,这里的值是用空格分隔的。

答案 2 :(得分:-1)

好的,这是我的解决方案。部分的信用额度为Does XSLT have a Split() function?

    <xsl:template match="/">
    <xsl:variable name="raw-data">
      <xsl:value-of select="Coordinates/Array"/>
    </xsl:variable>

    <xsl:variable name="ids">
      <xsl:if test="$raw-data">
        <xsl:call-template name="output-tokens">
          <xsl:with-param name="list" select="$raw-data" />
        </xsl:call-template>
      </xsl:if>
    </xsl:variable>

    <xsl:for-each select="msxsl:node-set($ids)/id">
      <xsl:sort data-type="number" order="descending" select="."/>
        <xsl:copy-of select="."/>
    </xsl:for-each>

  </xsl:template>

  <xsl:template name="output-tokens">
    <xsl:param name="list" />
    <xsl:variable name="newlist" select="concat(normalize-space($list), ' ')" />
    <xsl:variable name="first" select="substring-before($newlist, ' ')" />
    <xsl:variable name="remaining" select="substring-after($newlist, ' ')" />
    <id>
      <xsl:value-of select="$first" />
    </id>
    <xsl:if test="$remaining">
      <xsl:call-template name="output-tokens">
        <xsl:with-param name="list" select="$remaining" />
      </xsl:call-template>
    </xsl:if>
  </xsl:template>

P.S。编辑 - 现在有了排序