XSLT - How to select XML Attribute by Attribute?

前端 未结 5 639
陌清茗
陌清茗 2020-12-25 12:20

this is the structure of my source xml:






        
5条回答
  •  执笔经年
    2020-12-25 12:47

    Note: using // at the beginning of the xpath is a bit CPU intensitve -- it will search every node for a match. Using a more specific path, such as /root/DataSet will create a faster query.

提交回复
热议问题