我是XPath和XML的新手。我想知道是否有一个XPath表达式来从整个XML文档中选择所有属性名称及其各自的值。
作为我所拥有的更简单的例子:
<bookstore>
<book category="COOKING">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
<money currency="Dollars"></money>
</book>
<book category="CHILDREN">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
<money currency="Dollars"></money>
</book>
<book category="WEB">
<title lang="en">XQuery Kick Start</title>
<author>James McGovern</author>
<author>Per Bothner</author>
<author>Kurt Cagle</author>
<author>James Linn</author>
<author>Vaidyanathan Nagarajan</author>
<year>2003</year>
<price>49.99</price>
<money currency="Euros"></money>
</book>
<book category="WEB">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
<money currency="Dollars"></money>
</book>
</bookstore>
我想要这个:
category : COOKING
lang : en
currency : Dollars
category : CHILDREN
lang : en
currency : Dollars
category : WEB
lang : en
currency : Euros
category : WEB
lang : en
currency : Dollars
问题是我希望这个表达式适用于任何XML文档。关于如何做到这一点的任何其他建议也是受欢迎的。谢谢。
答案 0 :(得分:1)
这将适用于您的输入(修复不匹配标记<money>
和</currency>
!)和其他相当类似的XML文档后 - 但不能保证与任何< strong> XML文档:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" encoding="UTF-8"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/*/*">
<xsl:for-each select=".//@*">
<xsl:value-of select="concat(name(), ': ', ., ' ')"/>
</xsl:for-each>
<xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>
OTOH,这个将使用任何XML - 但输出只是整个文档中所有属性名称/值对的单个列表,没有分离:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" encoding="UTF-8"/>
<xsl:template match="/">
<xsl:for-each select="//@*">
<xsl:value-of select="concat(name(), ': ', ., ' ')"/>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
<强>结果强>
category: COOKING
lang: en
currency: Dollars
category: CHILDREN
lang: en
currency: Dollars
category: WEB
lang: en
currency: Euros
category: WEB
lang: en
currency: Dollars