Hi all,
Is there any way to beautify json string (it could be any json string) in powerapps
Example json string
[{"Cities":[{"City":"London","Population":8615000}],"Country":"United Kingdom"},{"Cities":[{"City":"Berlin","Population":3562000}],"Country":"Germany"}]
Expected Formatted string
[
{
"Cities":[
{
"City":"London",
"Population":8615000
}
],
"Country":"United Kingdom"
},
{
"Cities":[
{
"City":"Berlin",
"Population":3562000
}
],
"Country":"Germany"
}
]