Total Pageviews

Saturday, 2 December 2017

Excel to JSON是一款能将Excel内容转换成JSON的Excel插件


使用非常方便,选中Excel中需要转换的内容,然后点击Go按钮,就可以啦。
支持以下版本的Excel
Excel 2013 Service Pack 1 或更高版本
Excel 2016 for Mac
Excel 2016 或更高版本
Excel Online
例子:
Name Age Company
David 27 WTSolutions
Ton 26 WTSolutions
Kitty 30 Microsoft
Linda 30 Microsoft
Joe 40 Github
转换结果
[
{
“Name”: “David”,
“Age”: 27,
“Company”: “WTSolutions”
},
{
“Name”: “Ton”,
“Age”: 26,
“Company”: “WTSolutions”
},
{
“Name”: “Kitty”,
“Age”: 30,
“Company”: “Microsoft”
},
{
“Name”: “Linda”,
“Age”: 30,
“Company”: “Microsoft”
},
{
“Name”: “Joe”,
“Age”: 40,
“Company”: “Github”
}
]
同时该插件还支持后处理JSON,比如上例中,将工作单位都是WTSolutions的人合并成一个数组,等等。功能很多,可以阅读官方Documentation.
https://excel-to-json.wtsolutions.cn/en/latest/getstarted/

No comments:

Post a Comment