具有多个条件的XPath


157

我可以使用什么XPath选择具有指定名称属性的任何类别以及具有指定值的任何子节点作者。

我尝试了以下路径的不同变体,但均未成功:

//quotes/category[@name='Sport' and author="James Small"]

XML:

<?xml version="1.0" encoding="utf-8"?>
<quotes>
  <category name="Sport">
   <author>James Small<quote date="09/02/1985">Quote One</quote><quote             date="11/02/1925">Quote nine</quote></author>
  </category>
   <category name="Music">
   <author>Stephen Swann
 <quote date="04/08/1972">Quote eleven</quote></author>
  </category>
  </quotes>

Answers:


248

尝试:
//category[@name='Sport' and ./author/text()='James Small']


4
对于关注者,错误消息“预期的”,但发现:&&”的意思是“使用and关键字代替&&”(此答案指定)
rogerdpack 2016年

31

用途

/category[@name='Sport' and author/text()[1]='James Small']

或使用:

/category[@name='Sport' and author[starts-with(.,'James Small')]]

最好避免在//任何可能的情况下使用伪运算符,因为它的评估通常很慢。

也:

./somename

等效于:

somename

因此建议使用后者。


14

问题尚不清楚,但据我了解,您需要选择一个具有名称属性的类别,并应指定子作者的值,如果我不愿意,请纠正我

这是一个xpath

//category[@name='Required value'][./author[contains(.,'Required value')]]
e.g
//category[@name='Sport'][./author[contains(.,'James Small')]]

1

您可以使用和或在xpath中应用多个条件

//input[@class='_2zrpKA _1dBPDZ' and @type='text']

//input[@class='_2zrpKA _1dBPDZ' or @type='text']

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.