我正在寻找一个函数,它将以 JSON 字符串作为输入并使用换行符和缩进(制表符)对其进行格式化。
示例:我有输入行:
{"menu": {"header": "JSON viewer", "items": [{"id": "Delphi"},{"id": "Pascal", "label": "Nice tree format"}, null]}}
并希望以文本形式获得可读的结果:
{
"menu":{
"header":"JSON viewer",
"items":[
{
"id":"Delphi"
},
{
"id":"Pascal",
"label":"Nice tree format"
},
null
]
}
}
我找到了很多 PHP 和 C# 的示例,但不是 Delphi。有人可以帮助实现这样的功能吗?
更新 - 使用 SuperObject 的解决方案:
function FormatJson (InString: WideString): string; // Input string is "InString"
var
Json : ISuperObject;
begin
Json := TSuperObject.ParseString(PWideChar(InString), True);
Result := Json.AsJson(true, false); //Here comes your result: pretty-print JSON
end;