我面临的一个问题,我需要的元素,这取决于它们的价值,它包含一个数字,用句点分隔排序。 我需要之前第一周期取决于数的值元素进行排序,然后第一和第二时段等之间的数量。 我不知道,这个层次可以有多深,这是最大的问题。
<?xml version="1.0" encoding="UTF-8"?>
<root>
<ROW>2.0.1</ROW>
<ROW>1.2</ROW>
<ROW>1.1.1</ROW>
<ROW>1.2.0</ROW>
<ROW>1</ROW>
</root>
结果建议立即进行删除是这样的:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<ROW>1</ROW>
<ROW>1.1.1</ROW>
<ROW>1.2</ROW>
<ROW>1.2.0</ROW>
<ROW>2.0.1</ROW>
</root>
这是可能的呢? 感谢所有帮助。
有一个“简单”的答案,不使用任何分机:拆分行值到夹头和排序就可以了。
<xsl:template match="root">
<xsl:copy>
<xsl:apply-templates select="ROW">
<xsl:sort select="substring-before(concat(., '.'), '.')" data-type="number"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
<xsl:template match="ROW">
<xsl:param name="prefix" select="''"/>
<xsl:choose>
<!-- end of recursion, there isn't any more ROW with more chucks -->
<xsl:when test=". = substring($prefix, 1, string-length($prefix)-1)">
<xsl:copy-of select="."/>
</xsl:when>
<xsl:otherwise>
<xsl:variable name="chuck" select="substring-before(concat(substring-after(., $prefix), '.'), '.')"/>
<!-- this test is for grouping ROW with same prefix, to skip duplicates -->
<xsl:if test="not(preceding-sibling::ROW[starts-with(., concat($prefix, $chuck))])">
<xsl:variable name="new-prefix" select="concat($prefix, $chuck, '.')"/>
<xsl:apply-templates select="../ROW[starts-with(., $new-prefix) or . = concat($prefix, $chuck)]">
<xsl:sort select="substring-before(concat(substring-after(., $new-prefix), '.'), '.')" data-type="number"/>
<xsl:with-param name="prefix" select="$new-prefix"/>
</xsl:apply-templates>
</xsl:if>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
在完成此的唯一问题是在处理的各个数字不同的文字的长度(在周期之间)(即排序1.0,以该顺序2.0和10.0)。 如果有对个人号码的大小的上限(别回答n位),然后创造一种关键是所有的数字零填充到n位的串联。 对于n = 3,这导致
Row Key (string)
1 001
1.0 001000
1.0.1 001000001
1.1 001001
1.2.1 001002001
2.0.1 002000001
10.0.1 010000001
然后排序的关键。 如果你坚持在XSLT 1.0你必须诉诸EXSLT扩展功能做了分析和关键正常化。
它不漂亮,但你可以使用的Xalan:由吉姆描述节点集功能,“前处理”的数字为节点集与轻松排序表达式。
这个例子对我的作品与Xalan的2.5.1:
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:xalan="http://xml.apache.org/xalan">
<xsl:output method="xml" indent="yes" />
<xsl:template match="/">
<root>
<!-- Create a sort node with a sort expression wrapping each ROW -->
<xsl:variable name="nodes">
<xsl:for-each select="/root/ROW">
<xsl:variable name="sort-string">
<xsl:call-template name="create-sort-string">
<xsl:with-param name="sort-string" select="text()" />
</xsl:call-template>
</xsl:variable>
<sort sort-by="{$sort-string}">
<xsl:copy-of select="." />
</sort>
</xsl:for-each>
</xsl:variable>
<!-- Now sort the sort nodes and copy out the ROW elements -->
<xsl:for-each select="xalan:nodeset($nodes)/sort">
<xsl:sort select="@sort-by" data-type="text" />
<xsl:copy-of select="*" />
</xsl:for-each>
</root>
</xsl:template>
<xsl:template name="create-sort-string">
<xsl:param name="sort-string" />
<!-- Biggest number at each level -->
<xsl:variable name="max-num" select="1000" />
<xsl:choose>
<xsl:when test="contains($sort-string, '.')">
<xsl:value-of select="$max-num + number(substring-before($sort-string, '.'))" />
<xsl:call-template name="create-sort-string">
<xsl:with-param name="sort-string" select="substring-after($sort-string, '.')" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat($max-num + number($sort-string), '0')" />
</xsl:otherwise>
</xsl:choose>
</xsl:template>
我个人认为写的扩展功能将是可取的,但我知道这并不总是一个选项。