Text Master

by Thankless Technologies

CSV to JSON

Convert CSV data to a JSON array of objects. The first line is used as headers for the object keys.

Example

name,age + Alice,30 → [{"name":"Alice","age":"30"}]

id,value + 1,hello → [{"id":"1","value":"hello"}]

USED IN COOKBOOKS