TabSeparated
Tab-separated values (TSV) is a simple plain-text format for representing tabular data. In TSV, each line corresponds to a record and fields within a record are separated by a tab character. The first line may contain column headers. The tab character used as the delimiter typically has ASCII code 9, and files are commonly encoded as UTF-8.
Compared with comma-separated values (CSV), TSV uses a tab as the separator, which can reduce conflicts with
In practice, TSV is widely supported by spreadsheet applications, database tools, and scripting languages. It is
Common use cases include exporting table data from databases, sharing datasets between teams, and performing lightweight
Limitations include the lack of a formal escaping standard, potential issues with embedded tabs, and difficulties