LoginSignup
5
5

More than 5 years have passed since last update.

JSON の整形

Posted at

http://stackoverflow.com/questions/352098/how-to-pretty-print-json-script から。

コマンドラインからの場合は python -mjson.tool が簡単。

$ echo '{"foo": "lorem", "bar": "ipsum"}' | python -mjson.tool

JavaScript の場合は JSON.stringify() の第三引数にインデントレベルを追加できる。

JSON.stringify({ foo: "lorem", bar: "ipsum" }, null, 4);
5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5