Search found 1 match

by ehermans
Thu Jun 13, 2019 11:20 pm
Forum: XSLT and FOP
Topic: Strugling with variable occurrence
Replies: 1
Views: 1467

Strugling with variable occurrence

Hello i've the following source xml: <A> <B> <C>c1</C> <D>d1</D> <D>d2</D> <D>d3</D> <C>c2</C> <D>d1</D> <D>d2</D> <C>c3</C> <D>d1</D> <D>d2</D> <D>d3</D> </B> </A> and my output xml should be: <A> <B> <C>c1</C> <D>d1</D> <D>d2</D> <D>d3</D> </B> <B> <C>c2</C> <D>d1</D> <D>d2</D> </B> <B> <C>c3</C> ...