JsonConverter.ParseJson用于嵌套数组

时间:2018-12-07 15:13:16

标签: json excel-vba parsing

我想将JSON字符串转换为单独的二维数组(Excel VBA)。

我想我几乎尝试了所有方法(使用JsonConverter.ParseJson进行转换,然后转换为集合,再转换为JSON,再转换为字典和数组),但实际上没有任何作用。

我的JSON字符串包含一组二维表,这是简化形式的样子:

{ 
    "name": "(gdb) Attach",
    "type": "cppdbg",
    "request": "attach",
    "program": "/path/to/pythonX.Y",
    "processId": "${command:pickProcess}",
    "MIMode": "gdb",
    "setupCommands": [
        {
            "description": "Enable pretty-printing for gdb",
            "text": "-enable-pretty-printing",
            "ignoreFailures": true
        }
    ]
}

感谢您的建议。 尤里克

0 个答案:

没有答案