CSV (Comma-Separated Values)
एक सरल, टेक्स्ट-आधारित फॉर्मेट जो टैबुलर डेटा को कॉमा-सेपरेटेड वैल्यूज़ के रूप में स्टोर करता है। CSV डेटा इम्पोर्ट/एक्सपोर्ट और स्प्रेडशीट प्रोग्राम्स के बीच डेटा ट्रांसफर के लिए सार्वभौमिक रूप से उपयोग किया जाता है।
MIME Type
text/csv
प्रकार
टेक्स्ट
संपीड़न
दोषरहित
लाभ
- + 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
हानियाँ
- − 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
.CSV कब उपयोग करें
डेटा इम्पोर्ट/एक्सपोर्ट, स्प्रेडशीट डेटा एक्सचेंज, डेटाबेस माइग्रेशन, डेटा एनालिसिस, और ऐसे सिस्टम जहाँ सरल टेक्स्ट फॉर्मेट की आवश्यकता हो।
तकनीकी विवरण
CSV प्लेन टेक्स्ट होता है जहाँ प्रत्येक पंक्ति एक रिकॉर्ड होती है और फ़ील्ड कॉमा से अलग होते हैं। फ़ील्ड में कॉमा या न्यूलाइन होने पर डबल-कोट्स का उपयोग किया जाता है। एन्कोडिंग आमतौर पर UTF-8 या ASCII होती है। कोई औपचारिक स्कीमा नहीं होती — स्ट्रक्चर कन्वेंशन पर निर्भर है।
इतिहास
CSV फॉर्मेट 1970 के दशक से कंप्यूटर सिस्टम्स में उपयोग किया जा रहा है। IBM Fortran कंपाइलर (1972) ने comma-separated लिस्ट को सपोर्ट किया। RFC 4180 (2005) ने CSV का पहला औपचारिक स्पेसिफ़िकेशन प्रदान किया। यह आज भी डेटा एक्सचेंज का सबसे सरल और सार्वभौमिक फॉर्मेट है।
.CSV से रूपांतरित करें
.CSV में रूपांतरित करें
संबंधित फ़ॉर्मेट
संबंधित शब्द
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 …