I am getting data in csv file with double quotes around string columns but while reading csv file using U-sql i am getting errors because of double quotes in data as well.
I am thinking of replacing double quotes which is in data at first step then read that file but not sure how to do that as we have double quotes everywhere.
Any suggestions would be appreciated or if someone can help me giving the powershell or .net code to do the same that would be great help as I am not good in .net or powershell.
Sample Data
“Name”;”Department” “Abc”;”Education”Teaching” “Cde”;”Test”Another”
It should be
“Name”;”Department” “Abc”;”EducationTeaching” “Cde”;”TestAnother”