ASCII Delimited Text – Not CSV or TAB delimited text
ronaldduncan.wordpress.com
ASCII Delimited Text – Not CSV or TAB delimited text
1–10 of 286 posts
Re: ASCII Delimited Text – Not CSV or TAB delimited text
#2Re: ASCII Delimited Text – Not CSV or TAB delimited text
#3For a trivial example, try building an ASCII table using this format, with columns for numeric code, description, and actual character. You'll once again run into the whole escaping problem when you try to write out the row for character 31.
Re: ASCII Delimited Text – Not CSV or TAB delimited text
#4Re: ASCII Delimited Text – Not CSV or TAB delimited text
#5Re: ASCII Delimited Text – Not CSV or TAB delimited text
#6It doesn't solve the problem, although it does make it far less likely to run into it. For a trivial example, try building an ASCII table using this format, with columns for numeric code, description, and actual character. You'll once again run into the whole escaping problem when you try to write out the row for character 31.
(The problem reminds me of what it's like using "/" as a delimiter when using `sed` to edit file paths.)
Re: ASCII Delimited Text – Not CSV or TAB delimited text
#7Re: ASCII Delimited Text – Not CSV or TAB delimited text
#8Not to mention that one of the advantages of using a text record format at all is that you can view it using standard text viewers.
Re: ASCII Delimited Text – Not CSV or TAB delimited text
#9Re: ASCII Delimited Text – Not CSV or TAB delimited text
#10Everybody 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.