this post was submitted on 13 Jun 2023
273 points (100.0% liked)
Technology
37705 readers
274 users here now
A nice place to discuss rumors, happenings, innovations, and challenges in the technology sphere. We also welcome discussions on the intersections of technology and society. If it’s technological news or discussion of technology, it probably belongs here.
Remember the overriding ethos on Beehaw: Be(e) Nice. Each user you encounter here is a person, and should be treated with kindness (even if they’re wrong, or use a Linux distro you don’t like). Personal attacks will not be tolerated.
Subcommunities on Beehaw:
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Archiving copies of my Reddit history would be nice, but here's a somewhat idiotic question.
I use commas in copy a lot, so a CSV file sounds like a nightmare. How's that handled?
Csv is not always comma delimited. It could also be delimited with a tab, semicolon, or pipe (|)
Isn't a tab delimeted spreadsheet normally called a TSV, as in "Tab-Separated Values"?
Isn't CSV literally Comma-Separated Values?
Sorry, pedantry doesn't die.
A little bit yes, a little bit no
Tab delimited csv are sometimes called tsv, but just as often you'll see csv (tab delimited) as a file type option
See the wiki section on standardization for details.
Csv currently includes the following delimiters:
Comma, space, tab, pipe, or semicolon
so I just looked at the .csv it spat out, it encloses everything in quotes. here is what it looks like with the actual details changed:
"Title","Body","Permalink","Score","Timestamp UTC","Actions",
"","example comment start, example comment middle, example comment end","https.../","2","1686084708","deleted ",
HOWEVER, looking at this .csv I don't think it actually exported all of my comments. I don't really care about saving my reddit comments but I'm 99% sure it is missing my oldest comments from this account so use at your own risk I suppose
it did a wonderful job of deleting everything though, my account looks totally empty from the profile page
you can enclose the contents of a field in double quotes so that commas within a field don't break it.
I believe CSV format has quoting rules. Hope the software understands them. :)