JSON/CSV कन्वर्टर
JSON और CSV के बीच कन्वर्ट करें।
JSON ↔ CSV Converter - तकनीकी विवरण
CSV (Comma-Separated Values) is a simple format for tabular data, widely supported by spreadsheet applications. JSON arrays of objects can be converted to CSV where each object becomes a row.
कमांड-लाइन विकल्प
# Convert JSON to CSV (using jq + miller)\njq -r '.[] | [.field1, .field2] | @csv' file.json\n\n# Convert CSV to JSON (using miller)\nmlr --csv --json cat file.csv