CSV to JSON Converter
Turn CSV into a JSON array with one row per object. Optional header detection, configurable delimiter, and type coercion that turns 1/true/null into real JSON values.
Tóm tắt công cụ
Công cụ này nhận đầu vào có cấu trúc và trả về đầu ra xác định ngay trong trình duyệt, không tải lên máy chủ.
- Tên công cụ
- CSV to JSON Converter
- Mục đích đầu vào
- Cung cấp nội dung nguồn để biến đổi, xác thực hoặc phân tích.
- Mục đích đầu ra
- Nhận đầu ra chuẩn hóa thuận tiện để sao chép, tái sử dụng hoặc gỡ lỗi.
- Đầu vào ví dụ
- id,name,active 1,Alice,true 2,Bob,false
- Đầu ra ví dụ
- [ { "id": 1, "name": "Alice", "active": true }, { "id": 2, "name": "Bob", "active": false } ]
Paste CSV above and click Convert to JSON.
Giới thiệu công cụ
Turn CSV into a JSON array with one row per object. Optional header detection, configurable delimiter, and type coercion that turns 1/true/null into real JSON values.
Tổng quan công cụ
The parser is RFC-4180 compliant: it handles quoted fields, escaped quotes ("" → "), mixed \n and \r\n line endings, and trailing blank lines. With header mode on, the first row becomes the JSON object keys; with it off, each row is output as an array. Type coercion converts bare integers, floats, true/false, and null into their JSON-native form — leaving ambiguous strings (like "007" or "01-02") alone.
Trường hợp sử dụng
- Convert an Excel export to JSON for an API test
- Seed a web app fixture from a CSV file
- Pipe spreadsheet data into jq for filtering
- Prepare CSV survey data for a charting library
Ví dụ đầu vào/đầu ra
id,name,active 1,Alice,true 2,Bob,false
[
{ "id": 1, "name": "Alice", "active": true },
{ "id": 2, "name": "Bob", "active": false }
]product,price,notes "Widget, Blue",19.99,"On ""sale""" Gadget,42,ships 2 weeks
[
{ "product": "Widget, Blue", "price": 19.99, "notes": "On \"sale\"" },
{ "product": "Gadget", "price": 42, "notes": "ships 2 weeks" }
]1 Alice 2 Bob 3 Carol
[ [1, "Alice"], [2, "Bob"], [3, "Carol"] ]
Câu hỏi thường gặp
Is this CSV to JSON converter free?+
Does it support tab-separated or semicolon-separated files?+
What is type coercion?+
Can it handle quoted fields with commas inside?+
Is the first row always treated as the header?+
Khám phá thêm công cụ
Khám phá các tiện ích liên quan trong danh mục Dữ liệu bên dưới.
Công cụ liên quan
Tiện ích được tuyển chọn có thể hữu ích cho bạn