Files
30-seconds-of-code/glossary/CSV.md
2019-08-13 11:19:29 +03:00

9 lines
375 B
Markdown

---
title: CSV
tags: CSV
---
CSV stands for Comma-Separated Values and is a storage format for tabular data.
CSV documents are plaintext documents where each line represents a table row, with table columns separated by commas or some other delimiter (e.g. semicolons).
The first line of a CSV document sometimes consists of the table column headings for the data to follow.