Hi,
I want to create a custom transformer that concatenates the elements of a list entered as a parameter. This list is like: elements {0}, elements {1}, elements {2}... elements{x} and contains words. The start index is also an input parameter. As the number of items in the list varies, I created a loop where I get the index of each item.
My problem: my list $(_ list) is a parameter and I don't know how to call its elements to add them to the string I want to build.
Can you help me?
Nicolas