XPath wildcards on node name

后端 未结 4 1442
既然无缘
既然无缘 2020-12-07 20:12

I want to grab a node from my XML file, the node has a prefix such as \"latest_\", but this may change and I\'m keen for my XSLT to be as fluid as possible. Here\'s the XPat

4条回答
  •  猫巷女王i
    2020-12-07 21:02

    The above did not work for me. I had to "slightly" modify that as follows:

    /data/stats/*[contains(name(),'_cost')]
    

提交回复
热议问题