You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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
The text was updated successfully, but these errors were encountered: