I have a CSV file with ";" separated values.
Wanted to write a logic which will read these separated values and append the concatenation as the 4th value.
A;B;C
X;y;z
Output to a different file would be like as below.
A;B;C;ABC
X;y;z;XYZ
Any pointers pls.