Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 使用 xpath 获取节点的第 N 个子节点
如何从以下集合访问第 N 个节点。 XPath = /ProcessData/*[starts-with(name(), 'INV')]
下面的表达式会有所帮助
(/ProcessData/*[starts-with(name(), 'INV')])[5]
这里 5 可以替换为所需的值,以从选定(过滤)的节点中获取第 n 个节点。