Closed greyHairChooseLife closed 3 months ago
Hi,
Thank you for reporting this.
The problem is that the underlying CSV library (Polars) assumes that separator and quote characters are ASCII. Therefore, the Pilcrow character is cast into u8
and turned into an invalid character.
A more user-friendly message will be shown in the next version.
Let me know if I can help with anything else.
Bests
Hi, there.
$ tw --separator '¶' ./my.csv
$ tw --infer-schema safe --separator '¶' ./my.csv
$ tw --infer-schema no --separator '¶' ./my.csv
These returns all same.
It says invalid utf-8 but it is valid utf-8. Any clue, please?
Regards