Get first child node in XSLT using local-name()

天涯浪子 提交于 2019-12-05 06:04:02

The path expression you say works for you

//books[1]/*

generates a list of all child nodes of the first (and only in this case) occurrence of any <books> node. Because, in your data, the only occurrence of <books> is at the root, it is the same as

/books/*

which returns two <book> nodes, and so you are wrong to say that it returns only one node.

It is hard to know what you need, as if you are always applying local-name to the root node then you do not need to know its name and can access it with just /*, so you would want simply

/*/*[1]

However to access the first child node of a <books> node anywhere in the document you would write

//*[local-name()='books']/*[1]

You should be careful to confine your context as much as possible, as starting the XPath expression with // will force a search of the entire document, which is pointless and time-consuming if the node in question is always at the root.

This is a FAQ -- the XPath [] operator has higher precedence (priority) than the // pseudo-operator.

So:

//someElemName[1]

selects every element named someElemName that is the first child of its parent -- and, depending on the XML document, there can be more than one such elements.

To change this, one must use brackets.

Use:

(//*[local-name() = 'book'])[1]/*

Also note: In XPath positions are 1-based, not 0-based.

XSLT-based verification:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>

 <xsl:template match="/">
  <xsl:copy-of select=
  "(//*[local-name() = 'book'])[1]/*"/>
 </xsl:template>
</xsl:stylesheet>

when this transformation is applied on the following XML document:

<books>
    <book num="1">
        <author num="1"/>
        <title num="1"/>
    </book>
    <book num="2">
        <author num="2"/>
        <title num="2"/>
    </book>
</books>

the wanted nodes are selected and copied to the output:

<author num="1"/>
<title num="1"/>

I have to meet same concerns. I solved as follows:

//*[local-name()='MYNODENAME' and position()=X]

Have a nice day.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!