gpt4 book ai didi

xml - 如何在单个 XPath 函数中连接每个元素的两个属性?

转载 作者:行者123 更新时间:2023-12-03 17:12:03 24 4
gpt4 key购买 nike

我有以下 XML:

<xml>
<entry key="e1" value="foo"/>
<entry key="e2" value="bar"/>
...
</xml>

我想从 XPath 中获得以下输出:

e1: foo, e2: bar, ...

我尝试使用 string-join 但它没有用。任何想法哪个版本的 XPath 可以做到这一点?有可能吗?

(注意:我更喜欢 XPath 1.0 查询,但是,我认为这是不可能的)

最佳答案

I tried to use string-join but it didn't work. Any ideas on which XPath could do this? Is it even possible?
[...] I don't think it is possible)

为什么不可能?...

无论如何,正如评论中所暗示的那样,只需使用

concat(
entry[1]@key, ': ',
entry[1]@value, ', ',
entry[2]@key, ': ',
entry[2]@value)

其他方式:

  • XPath 2.0:string-join( (expr1, expr2, ...), '')
  • XSLT 2.0:<xsl:value-of select="expr1, expr2, ..." separator="" />
  • XPath 3.0:expr1 || expr2 || ...使用字符串连接运算符
  • 任何 XSLT 版本,为防止重复,使用模板匹配:

    <xsl:template match="xml/entry">
    <xsl:value-of select="@key" />
    <xsl:text>: </xsl:text>
    <xsl:value-of select="@value" />
    <xsl:if test="position() != last()">,</xsl:if>
    </xsl:template>
  • 或者更通用,在属性节点上应用模板并匹配如下:

    <xsl:template match="@key | @value">
    <xsl:value-of select="." />
    <xsl:text>: </xsl:text>
    </xsl:template>

    <xsl:template match="@value">
    <xsl:value-of select="@value" />
    <xsl:text>, </xsl:text>
    </xsl:template>
  • XSLT 3.0,使用文本值模板 (TVT) 编写模板:

    <xsl:template match="xml/entry" expand-text="yes">{
    @key}: {
    @value,
    if(position() != last()) then ',' else ()
    }</xsl:template>
  • XPath 2.0,更通用的方法:

    string-join(
    for $i in xml/item
    return concat($i/@key, ': ', $i/@value),
    ', ')

    或更短:

    string-join(xml/item/concat($i/@key, ': ', $i/@value, ', ')
  • ... 或使用 higher-order functions ( pdf ) 在 XPath 3.0 中更有趣和更容易 (?) 阅读:

    let $combine = concat(?, ': ', ?)
    return string-join(
    for $i in xml/item
    return $combine($i/@key, $i/@value),
    ', ')

    甚至:

    string-join(
    for-each-pair(
    xml/item/@key, (: combine this :)
    xml/item/@value, (: with this :)
    concat(?, ': ', ?)), (: using this, in order :)
    ', ') (: then join :)

注意:如果您不使用 XSLT,只需忽略模板方法,您可以坚持提到的功能。

关于xml - 如何在单个 XPath 函数中连接每个元素的两个属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32460307/

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