CSV (Comma-Separated Values)
CSV ist ein einfaches Textformat für tabellarische Daten, bei dem Werte durch Kommas getrennt sind. Es ist das universellste Format für den Datenaustausch zwischen Tabellenkalkulationen, Datenbanken und Programmiersprachen.
MIME-Typ
text/csv
Typ
Text
Komprimierung
Verlustfrei
Vorteile
- + Universal support in Excel, Google Sheets, databases, and every language
- + Human-readable and easy to generate
- + Minimal overhead — just data, no formatting or metadata
- + Streamable — can be processed line by line for large files
Nachteile
- − No data type information — numbers, dates, and strings all look the same
- − Encoding and delimiter ambiguity (comma vs semicolon vs tab)
- − No support for hierarchical or nested data
Wann Sie .CSV verwenden sollten
Verwenden Sie CSV für einfachen Datenaustausch zwischen Tabellenkalkulationen, Datenbanken und Programmiersprachen. Ideal für tabellarische Daten ohne komplexe Strukturen.
Technische Details
CSV speichert Daten als Klartext-Zeilen, wobei Felder durch Kommas (oder Semikolons) getrennt werden. Felder mit Trennzeichen, Zeilenumbrüchen oder Anführungszeichen werden in doppelte Anführungszeichen eingeschlossen.
Geschichte
CSV gibt es seit den frühesten Tagen der Datenverarbeitung. RFC 4180 (2005) formalisierte die gebräuchlichsten Konventionen, obwohl viele Varianten existieren.
Von .CSV konvertieren
In .CSV konvertieren
Verwandte Formate
Verwandte Begriffe
Learn More
File Format Conversion: A Complete Guide
Converting files between formats is a daily task for professionals across every industry. This comprehensive guide covers document, image, audio, …
How to Generate Strong Random Passwords
Password generation requires cryptographic randomness and careful character selection. This guide covers the principles behind strong password generation, entropy calculation, …
JSON vs YAML vs TOML: Choosing a Configuration Format
Configuration files are the backbone of modern applications. JSON, YAML, and TOML each offer different trade-offs between readability, complexity, and …
Text Encoding Explained: UTF-8, ASCII, and Beyond
Text encoding determines how characters are stored as bytes. Understanding UTF-8, ASCII, and other encodings prevents garbled text, mojibake, and …
CSV vs JSON vs XML: Data Exchange Formats Compared
Data exchange formats serve different needs. CSV excels at tabular data, JSON dominates web APIs, and XML powers enterprise integrations. …
How to Format and Validate JSON Data
Malformed JSON causes silent failures in APIs and configuration files. Learn how to format, validate, and debug JSON documents to …