P
peter_hanzel
Hello, I'am writing xslt transformation and want to achieve this.
I have this xml:
<Info>
<CtrlUnit>unit1</CtrlUnit>
<Freq>1</Freq>
<Freq>2</Freq>
<CtrlUnit>unit2</CtrlUnit>
<Freq>100</Freq>
</Info>
And I want to translate it to this:
<Info>
<CtrlUnit>unit1<x:br/>1<x:br/>2</CtrlUnit>
<CtrlUnit>unit2<x:br/>100</CtrlUnit>
</Info>
So to select following Freqs but only to next CtrUnit.
How can I achieve this?
I can't use XLST 2.0 with for-each-group. Only XSLT 1.1 is available
I have this xml:
<Info>
<CtrlUnit>unit1</CtrlUnit>
<Freq>1</Freq>
<Freq>2</Freq>
<CtrlUnit>unit2</CtrlUnit>
<Freq>100</Freq>
</Info>
And I want to translate it to this:
<Info>
<CtrlUnit>unit1<x:br/>1<x:br/>2</CtrlUnit>
<CtrlUnit>unit2<x:br/>100</CtrlUnit>
</Info>
So to select following Freqs but only to next CtrUnit.
How can I achieve this?
I can't use XLST 2.0 with for-each-group. Only XSLT 1.1 is available