CSV separator conversion

78 views Asked by At

I am trying to read many CSV files in US format with separator "," and decimal "." I want to convert it to French format with separator ";" and decimal "," see the example below:

US:

1,"IT.Neur.EUR.Zt(Bio, 15, 3)",0.832894644842207,0.849419048717047

2,"IT.Neur.EUR.Zt(Bio, 15, 3)",0.767852949784800,0.707998010930148

French

1;"IT.Neur.EUR.Zt(Bio; 15; 3)";0,832894644842207;0,849419048717047

2;"IT.Neur.EUR.Zt(Bio; 15; 3)";0,767852949784800;0,707998010930148

i am using C# windows form, i want to reat the CSV and convert it to csv but french format? Thanks for your help

0

There are 0 answers