I recently created an application that adds items to a database using CSV. After adding the elements, I realized that many of my values had extra quotation marks (") that were not needed, and this ruined my order.
The problem is that when exporting to CSV from Excel, Excel adds extra quotation marks to all my values that already contain a quote in them. I showed the difference below:
Original article: Drilling electric reversing 1/2 "6.3A
Exported item: "Electric reversible drill 1/2" "6.3"
Note: CSV export adds three (3) extra quotation marks ("). Two at the ends and one after the original intended quote.
Is there a parameter that I can change, or a formatting property that I can set in the Excel file / column? Or do I need to live with it and remove these quotes in my source code before adding them to the database?
Lando source
share