gpt4 book ai didi

xml - xsl :sort an XML file using multiple elements

转载 作者:数据小太阳 更新时间:2023-10-29 01:47:58 25 4
gpt4 key购买 nike

我正在尝试对 XML 文件中的一堆记录进行排序。诀窍是我需要对不同的节点使用不同的元素进行排序。举个最简单的例子,我想这样做:给定一个xml文件

<?xml version="1.0" encoding="utf-8" ?>

<buddies>

<person>
<nick>Jim</nick>
<last>Zulkin</last>
</person>

<person>
<first>Joe</first>
<last>Bumpkin</last>
</person>

<person>
<nick>Pumpkin</nick>
</person>

<person>
<nick>Andy</nick>
</person>

</buddies>

我想把它转换成

Andy
Joe Bumpkin
Pumpkin
Jim Zulkin

也就是说,可以按名字、姓氏和昵称的任何子集列出一个人。排序键如果存在则为姓氏,如果存在则为昵称,否则为名字。

我在这里遇到困难,因为使用变量作为 xsl:sort 键是 apparently not allowed .

我目前最好的办法是进行两步转换:使用此样式表为每条记录添加一个特殊标签

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

<xsl:output omit-xml-declaration="no" indent="yes"/>

<!-- *** convert each person record into a person2 record w/ the sorting key *** -->
<xsl:template match="/buddies">
<buddies>
<xsl:for-each select="person">
<person2>
<xsl:copy-of select="*"/>
<!-- add the sort-by tag -->
<sort-by>
<xsl:choose>
<xsl:when test="last"> <xsl:value-of select="last"/>
</xsl:when>
<xsl:otherwise>
<xsl:choose>
<xsl:when test="nick"> <xsl:value-of select="nick"/> </xsl:when>
<xsl:otherwise> <xsl:value-of select="first"/> </xsl:otherwise>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
</sort-by>
</person2>
</xsl:for-each>
</buddies>

然后对生成的xml进行排序

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

<xsl:template match="/buddies">
<xsl:apply-templates>
<xsl:sort select="sort-by"/>
</xsl:apply-templates>
</xsl:template>

<xsl:template match="person2">
<xsl:value-of select="first"/>
<xsl:value-of select="nick"/>
<xsl:value-of select="last"/><xsl:text>
</xsl:text>
</xsl:template>

虽然这种两步转换有效,但我想知道是否有更优雅的方式一次性完成?

最佳答案

您可以使用 concat XPath 函数:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="/buddies">
<xsl:apply-templates>
<xsl:sort select="concat(last,nick,first)"/>
</xsl:apply-templates>
</xsl:template>
<xsl:template match="person">
<xsl:value-of select="concat(normalize-space(concat(first,
' ',
nick,
' ',
last)),
'&#xA;')"/>
</xsl:template>
</xsl:stylesheet>

关于xml - xsl :sort an XML file using multiple elements,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3590194/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com