CSV-Datei (EN)
StandardFile format for storing tabular data in text format with comma-separated values
CSV-Datei
A CSV file (Comma-Separated Values) is a file format for storing tabular data in plain text format where values are separated by commas. This format is often used as a data source for mail merge in Word because it is easy to create and process. CSV files can be read and written by almost all spreadsheet programs and databases, making them a universal format for data exchange. The structure of a CSV file consists of lines, each representing a record, and columns separated by commas.
Datenstruktur
flowchart TD A[CSV-Datei] --> B[Zeile 1] A --> C[Zeile 2] A --> D[Zeile n] B --> E[Feld1] B --> F[Feld2] B --> G[Feldn] C --> H[Feld1] C --> I[Feld2] C --> J[Feldn] D --> K[Feld1] D --> L[Feld2] D --> M[Feldn] E --> N[Wert1] F --> O[Wert2] G --> P[Wertn]
Im Kontext
- Wird typischerweise zusammen mit Tabellenkalkulationsprogrammen wie Microsoft Excel oder Google Sheets verwendet
- Verwandt zu: Tabellenkalkulation, Datenimport, Datenexport, XML, JSON
- Beispiel-Einsatz: Import von Kundendaten in ein CRM-System