Skip to content
Advertisement

Replacing Double Quotes of Specific Column Entries in CSV File?

I have a huge CSV file with sample data that looks like so:

JavaScript

The original CVS file had some unnecessary characters that I removed to obtain the data as shown above using the following code:

JavaScript

Where I’m stuck now is, how do I replace the double quotes (“”) with single quotes (“) for all the entries of the field column Payee?

In the above example, the 3 entries for the Payee is ""Carfax", ""Carfax", and ""USA Petroleum". I would like to replace the double quotes at the beginning with single quotes, i.e. "Carfax", "Carfax", and "USA Petroleum"

The new CSV file should look like so:

JavaScript

Sample data file: report.csv

Advertisement

Answer

You can use regex maybe

JavaScript

so full code must be like this:

JavaScript

the output is this on my terminal:

JavaScript

Edit: Add full code to create the file

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