Last update: 2024-06-16

jsonを扱う   JSON Emacs EmacsLisp

Emacs Lispを使ってJSONを扱うには、 json パッケージを利用する。

(require 'json)
(json-read-from-string "{\"hoge\": \"fuga\"}")
((hoge . fuga))
(json-read-from-string "[1,2]")
[1 2]
(json-encode [1 2])
[1,2]
(json-encode '((hoge . fuga)))
{"hoge":"fuga"}