查询中的字符串匹配

时间:2010-11-20 12:46:39

标签: xquery

<model>BMW, Merc, sakoda</model> 

我需要检查BMw是否是模型。

It is throwing me an error. Could you please tell me how to do it.

1 个答案:

答案 0 :(得分:0)

使用

xs:boolean(doc("car.xml")/car/model[contains(.,'BMW')])

根据是否有元素,评估结果为true()false()

doc("car.xml")/car/model

包含字符串'BMW'