Skip to content
Advertisement

Replace characters in specific columns only (CSV)

I have data like this:

JavaScript

It has dot . as decimal separator but I need to use , instead.

Desired data:

JavaScript

I tried using Sed. With sed -i 's/./,/g' myfile.csv I could replace all dots with commas but would destroy dates on the fourth column. How can I change dots to commas in elsewhere but leave the fourth column as it is? If some other Linux tool is better for this task than Sed I could use it as well.

Advertisement

Answer

sed is for simple substitutions, for anything else just use awk:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement