本文介绍了XPath 包含多个值之一的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有简单的 xpath

I have simple xpath

 /products/product[contains(categorie,'Kinderwagens')]

它有效,但现在我如何过滤多个类别值

It works but now how do I filter on multiple categorie values

喜欢

/products/product[contains(categorie,'Kinderwagens')]  +
/products/product[contains(categorie,'Kinderwagens')]

推荐答案

这行得通吗?

/products/product[contains(categorie,'Kinderwagens') or contains(categorie,'Wonderwagens')]

这里有一个类似的问题

这篇关于XPath 包含多个值之一的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-10 10:08