I already managed to split the CSV file using this regex: "/,(?=(?:[^\"]\"[^\"]\")(?![^\"]\"))/"
But I ended up with an array of strings that contain the opening and ending double quotes. Now I need a regex that would strip those strings of the delimiter double quotes.
Bildiğim kadarıyla CSV formatında çift tırnak dizeleri kozalayabilirsiniz, zaten dize bir parçası olan tüm çift tırnak ikiye katlanır. Örneğin:
Benim "Diğer" kedi
olur
"Benim" "Diğer" "kedi"
(- Aşağı yuvarlanır N / 2) çift tırnak Ne temelde gerek bir dizi N doublequotes tüm dizileri yerini alacak bir regex olduğunu.
Or is there a better way ? Thanks in advance.