I have found some csv to json tools
http://codebeautify.org/csv-to-xml-json
http://www.csvjson.com/csv2json
However, they are not suitable for me.
I am using CSV files as 2D tables, rather than row-based entries.
Here is an example
The resulting JSON should be
Short of writing one myself, is there a CSV to JSON tool that I can distribute with my plugins that will allow me to specify how the conversion should occur?
http://codebeautify.org/csv-to-xml-json
http://www.csvjson.com/csv2json
However, they are not suitable for me.
I am using CSV files as 2D tables, rather than row-based entries.
Here is an example
Code:
Level,Chimg,Acquire-chan,B2,Satia1,0,0,0,02,100,100,100,1003,200,200,200,200
Code:
{ "Chimg" : [0, 100, 200], "Acquire-chan" : [0, 100, 200], "B2" : [0, 100, 200], "Satia" : [0, 100, 200]}
