gpt4 book ai didi

XSLT 用于替换 XML 元素中的属性(如果它存在于另一个 XML 中)?

转载 作者:行者123 更新时间:2023-12-01 13:00:01 25 4
gpt4 key购买 nike

我有2个文件

目录.xml

<?xml version="1.0" encoding="UTF-8"?>
<catalog>
<CD Title="Still got the blues" vinyl="unknown"/>
<CD Title="When a man loves a woman" vinyl="unknown"/>
</catalog>

乙烯基.xml

<?xml version="1.0" encoding="UTF-8"?>
<Vinyl>
<Album>
<Title>When a man loves a woman</Title>
<Vinyl>Yes</Vinyl>
</Album>
</Vinyl>

如何用xslt生成这样的output.xml?

<?xml version="1.0" encoding="UTF-8"?>
<catalog>
<CD Title="Still got the blues" vinyl="unknown"/>
<CD Title="When a man loves a woman" vinyl="yes"/>***
</catalog>

***标记这一行,因为它在 output.xml 中发生了变化

最佳答案

以下转换使用 catalog.xml 作为输入并使用 document() 加载 vinyl.xml。它仅通过进行简单测试即可执行合并。


[XSLT 1.0]

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes"/>
<xsl:variable name="vinyl" select="document('test_i2.xml')"/>

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

<xsl:template match="@vinyl">
<xsl:attribute name="vinyl">
<xsl:variable name="test" select="
$vinyl/Vinyl/Album[Title=current()/../@Title]/Vinyl"/>
<xsl:choose>
<xsl:when test="$test">
<xsl:value-of select="$test"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="."/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
</xsl:template>

</xsl:stylesheet>

这个属性模板不太直接,但它利用了纯 XPath:

<xsl:template match="@vinyl">
<xsl:attribute name="vinyl">
<xsl:value-of select="
$vinyl/Vinyl/Album[Title=current()/../@Title]/Vinyl
|
self::node()[count($vinyl/Vinyl/Album[Title=current()/../@Title])=0]"/>
</xsl:attribute>
</xsl:template>

关于XSLT 用于替换 XML 元素中的属性(如果它存在于另一个 XML 中)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6996998/

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