Simple quote doesn't work in CSV export wirth separator ; #3146
Unanswered
AmaurySchmitt
asked this question in
Q&A
Replies: 1 comment 2 replies
-
You probably need to set the enclosure to |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Good morning all,
I encounter a problem when exporting my data, in fact when I export my data in CSV with the separator: ;
my data having single quotes is not taken into account and shows me: ', the problem is that this shifts my data and blocks me for the import.
Thanks in advance for your answers !
My custom settings for export :
public function getCsvSettings(): array { return [ "delimiter" => ";", "input_encoding" => "UTF-8", "enclosure" => "", "line_ending" => PHP_EOL, "use_bom" => true, "include_separator_line" => true, "excel_compatibility" => true, ]; }
Beta Was this translation helpful? Give feedback.
All reactions