xslt Merge children of 2 parents and Store in a variable
问题 I receive an xml input like this: <root> <Tuple1> <child11></child11> <child12></child12> <child13></child13> </Tuple1> <Tuple1> <child11></child11> <child12></child12> </Tuple1> <Tuple2> <child21></child21> <child22></child22> </Tuple2> <Tuple2> <child21></child21> <child22></child22> <child23></child23> </Tuple2> </root> How can I merge the children of each Tuple1 with children of Tuple2 and store them in a variable that will be used in the rest of xslt document? First tuple1 will be merged