我有一系列颜色元素,如下所示:
<Colors>
<Color Name ="AliceBlue" Hex="#F0F8FF"/>
<Color Name ="AntiqueWhite" Hex="#FAEBD7"/>
<!-- more values... -->
</Colors>
一系列文字:
<Words>
<Element>1px</Element>
<Element>Blue</Element>
<Element>Solid</Element>
</Words>
找到Colors/Color/@name
属性与Words/Element/text()
中的节点完全匹配并检索该@name的有效方法是什么?
答案 0 :(得分:4)
正如@ michael.hor257k建议的那样,你可以使用钥匙;假设这个样本文件:
<root>
<Colors>
<Color Name ="AliceBlue" Hex="#F0F8FF"/>
<Color Name ="AntiqueWhite" Hex="#FAEBD7"/>
<Color Name="AnotherColor" Hex="123" />
<!-- more values... -->
</Colors>
<Words>
<Element>1px</Element>
<Element>Blue</Element>
<Element>AntiqueWhite</Element>
<Element>AliceBlue</Element>
</Words>
</root>
这个XSLT:
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
<xsl:output method="xml" omit-xml-declaration="yes" encoding="UTF-8" indent="yes" />
<xsl:key name="colors" match="/root/Colors/Color" use="@Name" />
<xsl:template match="/root/Words/Element[key('colors', .)]">
<xsl:value-of select="." />
</xsl:template>
<xsl:template match="text()" />
</xsl:transform>
将输出Element
和Color
节点中匹配的颜色名称。这是XSLTransform。