Format output from jsonencode to make it more human readable

18 views (last 30 days)
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 Comment
Swathik Kurella Janardhan
Swathik Kurella Janardhan on 20 Apr 2017
Edited: Swathik Kurella Janardhan on 20 Apr 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.

Sign in to comment.

Answers (1)

jcbyts
jcbyts on 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 Comment
Payam Razavi
Payam Razavi on 8 Dec 2020
Thanks! it worked for me with the following modification:
str = strrep(str, ',"', sprintf(',\r"'));

Sign in to comment.

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!