*** Welcome to piglix ***

Tab delimited

Tab-separated values
Filename extension .tsv, .tab
Internet media type text/tab-separated-values
Type of format multiplatform, serial data streams
Container for database information organized as field separated lists
Standard IANA MIME type

A tab-separated values (TSV) file is a simple text format for storing data in a tabular structure, e.g., database table or spreadsheet data, and a way of exchanging information between databases. Each record in the table is one line of the text file. Each field value of a record is separated from the next by a tab character. The TSV format is thus a type of the more general delimiter-separated values format.

TSV is a simple file format that is widely supported, so it is often used in data exchange to move tabular data between different computer programs that support the format. For example, a TSV file might be used to transfer information from a database program to a spreadsheet.

TSV is an alternative to the common comma-separated values (CSV) format, which often causes difficulties because of the need to escape commas – literal commas are very common in text data, but literal tab stops are infrequent in running text. The IANA standard for TSV achieves simplicity by simply disallowing tabs within fields.

For example, the head of the Iris flower data set can be stored as a TSV using the following plain text (note that the HTML rendering will convert tabs to spaces):

The TSV plain text above corresponds to the following tabular data:


...
Wikipedia

...