datatraveller1

Results 8 comments of datatraveller1

This works for me on MS Windows (quoting 4 times): `.\xsv.exe select Name,""""Do you consider yourself to have a disability, impairment or long-term condition?"""" test.csv`

Hi, is there news about this issue? `print length("Céline")` still returns 7 instead of 6 I use GoAWK under MS Windows. The file is UTF-8 encoded (as far as I...

Hi @benhoyt and Arnold, thank you very much for your answers. It was difficult to create a simple example because the script is complex (the actual script uses fixed length...

Hi @benhoyt thank you very much. The problem is that I often have fixed length fields and use constructs like: `LINES[NR] = replace_substring(LINES[NR], 41, 120, sprintf("%-120.120s", title))` I know about...

You are using the first field (default: -p0) as primary key. The issue is that three times "x" isn't a unique primary key.

This isn't valid CSV. Instead of `"01dd672d-e078-46c5-ae4a-6cc284125664", "zoe"`, please use no space between the comma and the first enclosing quote of the next field. Correct is: `"01dd672d-e078-46c5-ae4a-6cc284125664","zoe"`. So, this will...

I have just noticed someone else posted nearly the same issue (https://github.com/Clever/csvlint/issues/21) but this simple fix (removing the UTF-8 BOM in your csvlint code) would help to succeed the csvlint...