我是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文档。关于我如何做到这一点的任何其他建议也欢迎。谢谢你。
这将适用于您的输入(在您修复不匹配的标记
XSLT1.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—但输出将只是整个文档中所有属性名称/值对的单个列表,没有分隔:
XSLT1.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
使用xslt 1.0(BizTalk 2016)我正在寻找一种通用的方法来选择任何有效的xml文档的命名空间 例如,我有以下xml文档: 假设根元素的值可以是任何东西,那么选择名称空间值的xpath是什么http://www.random.com/bo/request/portfolioactivation 我原本希望“/*/@xmlns”能起作用,但事实并非如此。
问题内容: 作为Java 6应用程序的一部分,我想在XML文档中找到所有名称空间声明,包括所有重复项。 编辑 :根据马丁的要求,这是我正在使用的Java代码: 假设我有这个XML文档: 为了找到所有名称空间声明,我 使用xPath 1.0 将此xPath语句应用于XML文档: 它找到4个名称空间声明,这是我期望的(和期望的): 但是,如果我 改用xPath 2.0 ,则会得到16个名称空间声明(每
我需要使用属性名称替换xml文件中的属性值。 前任: 我有一个替换此值的目标。i、 e“默认值”。如果用户为属性测试名称指定了错误的值,则可以多次运行此目标。用户可以使用正确的值重试运行目标。因此,我不能使用正则表达式替换。我只能依靠物业名称。有没有一种方法可以在ant中使用属性值的名称来替换属性值?
从xml中,我需要获得每个节点的名称和面积。 我知道示例xpath,比如,
我有以下XML。 我在http://chris.photobooks.com/xml/default.htm上查看了它,它显示xpath无效,不确定问题出在哪里。
问题内容: 我的XML看起来像 当我在下面运行TSQL时,它完成但不返回状态码值 问题答案: 您需要定义 名称空间 -而不是前缀!-在您的声明中。 试试这个: