-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
Description
What feature or new tool do you think should be added to DevToys?
A simple CSV to JSON/XML
Why do you think this is needed?
as a game developer, often game designers/balancers/level designers will use spreadsheets to organize their data, sometimes it would be nice to just convert a .csv into .json
Solution/Idea
field0,field1,field2,field3,field4
0,1,2,3,4
10,11,12,13,14
[
{
"field0": 0,
"field1": 1,
"field2": 2,
"field3": 3,
"field4": 4
},
{
"field0": 10,
"field1": 11,
"field2": 12,
"field3": 13,
"field4": 14
}
]
Comments
No response