Format output from jsonencode to make it more human readable
20 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Can someone provide an example to format the output from jsonencode to make it more human readable. I.E. add carriage returns and indentations.
1 commentaire
Swathik Kurella Janardhan
le 20 Avr 2017
Modifié(e) : Swathik Kurella Janardhan
le 20 Avr 2017
I am sorry that I didn't understand the question clearly. Can you elaborate on your question? You can refer to the jsonencode doc for more examples.
Réponses (2)
jcbyts
le 8 Jan 2019
There might be a more efficient way to do this, but this worked well for me.
str = jsonencode(str);
str = strrep(str, ',', sprintf(',\r'));
str = strrep(str, '[{', sprintf('[\r{\r'));
str = strrep(str, '}]', sprintf('\r}\r]'));
1 commentaire
Payam Razavi
le 8 Déc 2020
Thanks! it worked for me with the following modification:
str = strrep(str, ',"', sprintf(',\r"'));
Noam Greenboim
le 2 Juin 2024
Modifié(e) : Noam Greenboim
le 4 Juin 2024
You can use my solution in File Exchange here:
With this function, you can control the indentation parameters and spacing.
As of R2021a or so (but not earlier version), you can call jsonencode with the parameter PrettyPrint, that does what you asked for.
0 commentaires
Voir également
Catégories
En savoir plus sur Data Import and Analysis dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!