我知道如果我有非独特的子节点(通过'concat'),我的问题将很容易解决。
问题:
<CarPlant>
<Model>Audi</Model>
<Model>Scoda</Model>
</CarPlant>
我想获得一个字符串,例如“奥迪,Scoda”通过scala的方式处理它。
答案 0 :(得分:2)
此XPath 2.0表达式,
/CarPlant/string-join(Model,',')
将评估为
Audi,Scoda
,根据要求提供XML。