Hello,
I'm looking a way to delete double quotes caractere in csv, but only for the first line...
If i'm using this script : (Get-Content c:\users.csv) -replace('"','') | Out-File C:\users.csv -force it's work but for all csv lines...
For exemple, CSV looks like :
"Name","Lastname"
"Jordan" ,"Durand"
I would like to have :
Name,Lastname
"Jordan" ,"Durand"
Can you help me please ?
Thanks.