Tab delimited
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) (→References) |
(PRONOM) |
||
Line 3: | Line 3: | ||
|subcat=Text-based data | |subcat=Text-based data | ||
|extensions={{ext|tsv}} | |extensions={{ext|tsv}} | ||
− | |mimetypes= | + | |mimetypes={{mimetype|text/tab-separated-values}} |
− | {{mimetype|text/tab-separated-values}} | + | |pronom={{PRONOM|x-fmt/13}} |
}} | }} | ||
Like [[CSV]], '''Tab delimited''' files are structured data sets consisting of one record per line with fields separated by a delimiter, in this case the tab character (character #9 in the [[C0 controls]], shared by [[ASCII]], [[Unicode]], and many other character sets). The first line consists of headers giving the column names. The field values are expected not to have tab characters in them, thus removing the need for special quoting or escaping. | Like [[CSV]], '''Tab delimited''' files are structured data sets consisting of one record per line with fields separated by a delimiter, in this case the tab character (character #9 in the [[C0 controls]], shared by [[ASCII]], [[Unicode]], and many other character sets). The first line consists of headers giving the column names. The field values are expected not to have tab characters in them, thus removing the need for special quoting or escaping. |
Revision as of 14:44, 28 October 2016
Like CSV, Tab delimited files are structured data sets consisting of one record per line with fields separated by a delimiter, in this case the tab character (character #9 in the C0 controls, shared by ASCII, Unicode, and many other character sets). The first line consists of headers giving the column names. The field values are expected not to have tab characters in them, thus removing the need for special quoting or escaping.