I'd like to read, transpose and write a txt/csv file. At the end, the file format doesn't change.
The input file might look like this:
Head0,Row1,Row2,Row3,Row4,Row5
Head1,A1,B1,C1,D1,E1
Head2,A2,B2,C2,D2,E2
Head3,a,b,c,d,e
... and the output file should then look like that:
Head0,Head1,Head2,Head3
Row1,A1,A2,a
Row2,B1,B2,b
Row3,C1,C2,c
Row4,D1,D2,d
Row5,E1,E2,e
For the first steps in the flow I've defined variables for
- the whole file content "dateiinhaltx"
- the delimiter character ","
- the new line character for recognizing each new line of the file "newLine"
- the array for splitting eachDataRow of the file
- another array for later filling the new rows "set new row" (here I'm not sure how it should work)
Anyway, now I'm stucking in splitting each recognized data row with the given delimiter and writing the new file with the transposed data.
Can anybody help me with that?
Kind regards
The flow looks as following so far:

