ToolHub
中文
Light
GitHub
返回首页
/
表格数据
/
JSON 数组转表格 / CSV
加载中...
JSON 输入
加载示例
[ { "id": 1, "name": "ToolHub", "tags": ["dev", "frontend"], "owner": { "email": "team@example.com" } }, { "id": 2, "name": "Codex", "tags": ["automation"], "owner": { "email": "bot@example.com" } } ]
行数
2
列数
4
复制 CSV
id
name
tags
owner.email
1
ToolHub
["dev","frontend"]
[email protected]
2
Codex
["automation"]
[email protected]
CSV 输出
id,name,tags,owner.email 1,ToolHub,"[""dev"",""frontend""]",team@example.com 2,Codex,"[""automation""]",bot@example.com