使用XSLT重新排序xml元素

时间:2011-08-01 08:37:39

标签: xslt

我有以下xml片段出现在很多地方,但TYPE元素出现的顺序是随机的。此外,没有保证所有类型都可用,例如某些代码段可能包含Visio和/或Outlook或缺少任何其他节点:

<Applications>
    <Type Name="Word">
    <Type Name="Excel">
    <Type Name="PowerPoint">
    <Type Name="Visio">
    <Type Name="Outlook">
</Applications>

我想重新排序Type元素,以便Type Excel存在,它将始终位于列表的顶部,依此类推:

if EXCEL exists, 
place TYPE Excel at the top.
if WORD exists,
place TYPE Word next,
.
.
.

我尝试过使用xsl:copy,几个xsl:if然后应用特定的模板,xsl:whens。不幸的是,这些都不适合我。我看了另一篇关于重新排序xml节点元素的帖子,这看起来不像我想要的(它使用的是xsl:call-templates,我没有)。

我有一些东西从下面开始,我想我需要将上面的操作代码添加到底部:

XML已更新

<xsl:template match="Applications">
    <xsl:element name="Applications">
        <xsl:element name="Type">
            <xsl:attribute name="Name">PowerPoint</xsl:attribute>
        </xsl:element>
        <xsl:element name="Type">
            <xsl:attribute name="Name">Outlook</xsl:attribute>
        </xsl:element>
        <xsl:apply-templates>
            <xsl:sort select="string-length(substring-before(';Excel;PowerPoint;Outlook;Word;Visio',@Name))"/>
        </xsl:apply-templates>
    </xsl:element>
</xsl:template>

通缉:

<Applications>
    <Type Name="Excel">
    <Type Name="PowerPoint">
    <Type Name="Outlook">
    <Type Name="Word">
    <Type Name="Visio">
</Applications>

但得到了:

<Applications>
    <Type Name="PowerPoint">
    <Type Name="Outlook">
    <Type Name="Excel">
    <Type Name="Word">
    <Type Name="Visio">
</Applications>

感谢帮助让这件事工作...... TIA。

2 个答案:

答案 0 :(得分:7)

查看<xsl:sort>指令,该指令用作<xsl:apply-templates><xsl:for-each>指令的子项。

如果你想要按照自然顺序(例如数字或字母顺序)排序的东西,那就相当容易,例如,只需指定<xsl:sort select="@Name">

如果你想要一个自定义排序顺序,有很多选项,但是如果你的列表不是很大,那么试试这个:

<xsl:sort select="number-format(string-length(substring-before(
   ';Excel;Word;PowerPoint;Outlook;Visio'
   ,@Name)),'000')" />

这基本上是在你要查找的字符串之前的字符串的一部分,并对其长度进行排序,强制三位数来处理词法排序。 Excel解析为001,Word解析为007等。

或者,您可以像这样强行勉强:

<xsl:template match="Application">
  <xsl:copy>
    <xsl:apply-templates select="Type[@Name='Excel']" />
    <xsl:apply-templates select="Type[@name='Word']" />
    <!-- etc.. -->
  </xsl:copy>
</xsl:template>

任何不存在的东西都会被简单地跳过,因为没有什么可以应用模板。它更简单,但更冗长。

答案 1 :(得分:0)

看起来你需要这个:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

<xsl:template match="*">
  <xsl:copy>
  <xsl:copy-of select="@*"/>
  <xsl:apply-templates/>
  </xsl:copy>
</xsl:template>


<xsl:template match="Applications">
  <xsl:copy>
  <xsl:copy-of select="@*"/>
  <xsl:apply-templates select="Type">
   <xsl:sort select="@Name"/>
  </xsl:apply-templates>
  </xsl:copy>
</xsl:template>

</xsl:stylesheet>