Hello, my input csv is as follows (it was output from a 3 point shapefile using CoordinateExtractor):
A,1,2
B,3,4
C,5,6
I would like to output csv as follows (which will ultimately be used to generate a 3 line shapefile from LineBuilder):
A_B,1,2
A_B,3,4
A_C,1,2
A_C,5,6
B_C,3,4
B_C,5,6
I'm trying to use various list transformers but I can't get there. Any ideas would be much appreciated!