我有一个almost-json
文件。美东时间。1000 行。这是其中的一部分:
level: {
1: {
cost: 200,
hp: 300,
townhall: { required: 2, max: 0 }
},
2: {
cost: 1000,
hp: 500,
townhall: { required: 2, max: 25 }
},
}
所有代码几乎都是这样。数百个嵌套对象。我想添加double quotes
到这个文件中的所有keys
(只是字符串)。这意味着所有以冒号结尾的字符串。像这样:
"level": {
1: {
"cost": 200,
"hp": 300,
"townhall": { "required": 2, "max": 0 }
},
2: {
"cost": 1000,
"hp": 500,
"townhall": { "required": 2, "max": 25 }
},
}
我看到了一些类似的问题,但它们不是我想要的。