使用自定义顺序的 XML 排序 [重复]

Posted

技术标签:

【中文标题】使用自定义顺序的 XML 排序 [重复]【英文标题】:XML Sort Using custom order [duplicate] 【发布时间】:2021-03-08 15:07:51 【问题描述】:

我需要对自定义订单的 XML 库进行排序。按字母顺序很容易做到,但到目前为止我还没有找到任何关于如何做到这一点的指导。

我正在使用 XSLT1.0Text 输出

所以我需要按这个顺序排序snake|cat|dog

我的 XML 如下所示:

    <?xml version="1.0" encoding="UTF-8" ?>
<root>
    <properties>
<categorie>dog</categorie>
<data>...</data>
     </properties>
     <properties>
<categorie>cat</categorie>
<data>...</data>
     </properties>
     <properties>
<categorie>cat</categorie>
<data>...</data>
     </properties>
     <properties>
<categorie>snake</categorie>
<data>...</data>
    </properties>
    <properties>
<categorie>snake</categorie>
<data>...</data>
     </properties>
</root>

我的 XSLT 是这样的:

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

<xsl:template match="/*">
<xsl:for-each select="/root/properties">
<xsl:sort select="categorie"/>
<xsl:value-of select="categorie"/>

</xsl:for-each>
</xsl:template>
</xsl:stylesheet>

任何指导表示赞赏... ;)

【问题讨论】:

另见:***.com/a/54092492/3016153 【参考方案1】:

你可以这样做。我知道它不漂亮,但如果你没有太多的类别,它就可以了......

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="text" version="1.0" encoding="UTF-8" indent="yes"/>
    
    <xsl:template match="/">
        <!-- Snake -->
        <xsl:for-each select="/root/properties[categorie='snake']">
            <xsl:value-of select="categorie"/>
        </xsl:for-each>
        <!-- Cat -->
        <xsl:for-each select="/root/properties[categorie='cat']">
            <xsl:value-of select="categorie"/>
        </xsl:for-each>
        <!-- Dog -->
        <xsl:for-each select="/root/properties[categorie='dog']">
            <xsl:value-of select="categorie"/>
        </xsl:for-each>
    </xsl:template>
    
</xsl:stylesheet>

在这里查看它的工作原理:https://xsltfiddle.liberty-development.net/3MEdvh9

【讨论】:

谢谢塞巴斯蒂安!使用这种方法,我担心我将不得不复制一堆其他需要在排序之后执行的 XSLT 命令。 我在这篇文章中找到了答案:robdinardo.com/content/…

以上是关于使用自定义顺序的 XML 排序 [重复]的主要内容,如果未能解决你的问题,请参考以下文章

在 Eloquent 中按自定义顺序对集合进行排序 [重复]

我有一个字符串,我需要根据自定义顺序进行排序,并且我正在使用优先级队列,但优先级队列因重复而失败 [重复]

如何按自定义顺序对 JavaScript 中的数组进行排序? [复制]

如何使用 Comparator 定义自定义排序顺序?

使用喜欢和自定义排序在标题字段上进行 SQL 搜索

使用自定义排序顺序对对象的 ArrayList 进行排序