Please Log in or Create an account to join the conversation.
Can't help you there. You should be using software designed for managing CSV files. Google Sheets is free and so is LibreOffice.a) I do not know how to change encoding on Notepad's text files...
That's probably because the software you're using to open the CSV file.b) If I try to export Scandinavian Å Ä Ö they turn up as Ã… Ä Ö (which I can readily replace back to Scandinavian characters).
But will it work the other way round (I.e. I upload Ã…, and it turns up as Å in the name field)
Same issue as B. The software you're using for editing a CSV file is not very good. Notepad is great for a lot of things, but editing CSV files is not one of those things.a) The Gids field is exported in the following format: "[""2"",""12"",""13""]"
I take it that I can upload it in this format instead: "[2,12,13]"
Empty string is supposed to be empty string as it is exported. Do not interpret this as a chance to format it however you want. I've given you the CSV configuration above.b) And Empty fields are exported as: ""
I take it that I can just make one delimiter follow upon the next to upload an empty field value, as so: ,,
Use the format it gives you on export. No you cannot just make up new formats. Use software designed for editing CSV files and on open provide it the configuration given earlier. LibreOffice for example will ask for all those parameters on opening of the CSV file.c) The Params fields are exported as: "{""admin_style"":"""",""admin_language"":""""}"
Can I upload the same data in the form: "{admin_style:,admin_language:}"
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
I wrote the entirety of the import/export code, so yes.Are you really certain that your answer referring to the parser is correct?
It won't display like that in an actual CSV editor where you can specify the string delimiter as I've already explained the settings required below.(I have not yet come across a string parser that would give a different output when parsing "[""2"",""12"",""13""]" v.s. "[2,12,13]" ,
in both cases the field value would be [2,12,13] , wouldn't it?
Please Log in or Create an account to join the conversation.