CSVlike
CSVlike refers to a family of plain-text formats for representing tabular data in which each line corresponds to a record and fields within the line are separated by a delimiter. Unlike a single standardized specification, CSVlike encompasses multiple variants that share core concepts but differ in delimiter choice, quoting rules, and escape mechanisms. The most common delimiter is a comma, but tabs, semicolons, or pipes are also used. Fields may be quoted to allow embedded delimiters or line breaks; quotes within quoted fields are typically escaped by doubling the quote character or by using an escape character. Line endings and character encoding (often UTF-8) are not fixed by the format and may vary by implementation.
Core features typically include an optional header line that provides field names, support for empty fields,
Parsing generally relies on configurable parameters, and most programming languages offer libraries that can parse CSVlike
CSVlike is widely used for data exchange, data export/import, and lightweight configuration due to its simplicity