I know how to use ListConcatenator in order to concatenate all list values into a single attribute. However, what can I do if my feature has multiple list attributes? I want to concatenate all values of all lists into respective single attributes. The resulting single attributes should have the names of the original list. I don' know the names of the lists in advance.
Examples:
colour{0} = 2
colour{1} = 3
colour{2} = 2
single attribute colour = 2,3,2
shape{0} = triangle
shape{1} = square
shape{2} = circle
single attribute shape = triangle,square,circle
Thanks for any help