how to copy the data of variable of one foreach to another for each in xslt

后端 未结 2 1153
不知归路
不知归路 2021-01-17 04:04

XML


 
     
        102
        BKTRU         


        
2条回答
  •  春和景丽
    2021-01-17 04:33

    XSLT is a functional language -- among other things this means that variables are immutable -- once given a value they cannot be changed.

    The solution to this specific problem:

    Change:

    
    

    To:

    
    

    When the corrected transformation is applied to the provided XML document, the wanted result is produced.

提交回复
热议问题