19 comments

  • bariumbitmap 2 days ago

    This comes up every so often. I think there are good reasons it hasn't caught on. Here's a relevant comment from ten years ago:

    > whole point is to be roughly human-readable and using non-printing characters defeats that. You can't even easily enter these things via the command line.

    > If we're abandoning human-readability, why even bother with ASCII? Just use a binary format. Has anyone actually used ASCII unit and record separator delimiters successfully? I'd be curious about what advantages they had over a binary format, even just a protobuf or Thrift serialized form. If we want to preserve schemalessness, there's stuff like Sereal.

    --- arjie, June 8, 2016

    https://news.ycombinator.com/item?id=11862769

    Here's another one from more than twelve years ago:

    > I've done this.

    > Everybody hated it. Most text editors don't display anything useful with these characters (either hiding them altogether or showing a useless "uknown" placeholder), and spreadhseet tools don't support the record separator (although they all let you provide a custom entry separator so the "unit" separator can work). Besides the obvious problem that there's no easy way to type the darned things when somebody hand-edits the file.

    --- Pxtl, March 26, 2014

    https://news.ycombinator.com/item?id=7474600

    • toast0 2 days ago

      Yahoo access logs used control characters to separate fields beyond a fixed width field, but it wasn't the record separators. It used ctrl-E to separate fields, which had a one character identifier. Some of the fields had sub-fields which were separated ctrl-F.

      Slide 22 https://www.radwin.org/michael/talks/yapache-oscon2006.pdf

    • xg15 a day ago

      I think there is a deeper question: "record separator" and "unit separator" chars are a good idea, but why are they invisible? I agree that in the current form, they are mostly unusable.

      What was the idea of the designers how they should be used?

      • RiverCrochet a day ago

        ASCII was created in the 1960s. That's around the time when the industry wasn't really sure if all files were just going to be a stream of bytes that were completely up to programs to interpret, or if it was the OS's responsibility to enforce a database-like structure on all disk-like I/O.

    • kirb 2 days ago

      On displaying control characters, as of now, at least VSCode and Sublime Text do show them clearly. VSCode uses Unicode control pictures “␄” with a red background, while Sublime shows plain-text “<EOT>” in grey. You can also copy-paste - the real control character lands on your clipboard. Otherwise the rest of it stands, especially for a non-developer using Notepad or TextEdit.

      This is trading off ongoing usability for one-time developer convenience. The example given in the post would also struggle with a large file as it loads the entire contents into memory, while having Python feed you lines allows it to read in chunks. Plenty of accurate, unit-tested CSV parsers exist in every language, it’s fine to use one and be done with it. Tabular data formats are a solved problem.

  • nemothekid 2 days ago

    The problem in practice with CCSV files, is they are no longer human editable, nor will tools like Excel automatically parsed them (maybe, I haven't checked in ~10 years, however I doubt CSV parsing has improved at all).

    If the files aren't human editable anymore, why stick with CSV at all?

  • saulpw 2 days ago

    This is generally called ASV for ASCII-separated values, or USV for Unicode-separated values (e.g. U+241E, which is different from the ASCII U+001E equivalent).

    Also, as wonderful as this would be, as other comments say, no one uses it because no one uses it.

  • willk 2 days ago

    I think we hugged it to death.

    https://archive.is/4anlI

  • rigbert 2 days ago

    If you've dealt with the headache that can be FIX, you'll realize the annoyance this can be because unless your tooling is very aware you're doing this (it probably isn't, unless you've built your own) everything looks like garbage until you tune everything to make it pretty.

    Works internally, breaks externally, which half of the benefit of a CSV is that you can give just about anyone the file and they can work with it.

  • bananamogul 2 days ago

    The article seems to be unaware that Python has a built-in csv module.

  • pupppet 2 days ago

    Why was a comma originally chosen over, I dunno, say a pipe character?

  • fukawi2 2 days ago

    PICK D3 has been doing similar since... well, a very long time. It uses chr(254), chr(253) and chr(252) for the varying depths of records. I always rather enjoyed working with it in the 2000s. Elegant in its simplicity, functionally practical (for the workloads we had at the time at least)

  • horticulturist a day ago

    These control characters do sometimes appear in CSV files in the wild. The suggested method of parsing is unsafe and lazy.

  • Incipient a day ago

    We deal with mostly business data, doing migrations. | often works out to be a nice, non-conflicting delimiter.

  • tnelsond4 a day ago

    I just use tsv. No quoted fields required because none of my data ever has tabs

  • bluenose69 a day ago

    The Canadian government uses tab-separated values quite a lot.

  • OutOfHere 2 days ago

    One can pipe it to an expression for viewing purposes:

        sed $'s/\x1f/,/g; s/\x1e/\\\n/g; s/\x04//g'
    
        awk 'BEGIN { RS="\036"; FS="\037"; OFS="," } { sub(/\004$/, ""); $1=$1; print }'
  • zmj 2 days ago

    I thought this was going to be about comma-separated CSV files.

  • msephton 2 days ago

    Seems to be down