Change "Point" to "comma" CSV in specific column

Hello, I have the following problem:

I need to change the points of a specific column by comma in a CSV file


@gustavo.souza

You want to change donts in between number to comma?

If so try this

For loop with

Currentrow(0) = DateTime.ParseExact(currentRow(0).ToString,"dd.MM.yyyy",System.Globalization.CultureInfo.InvariantCulture).ToString("MM,dd,yyyy")

Cheers

1 Like

Hi @gustavo.souza
Try this
CurrentRow(“first_name”).ToString().Replace(“.”, “,”)

I hope it helps!!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.