by shigemk2

当面は技術的なことしか書かない

split-spring

split-spring

文字列をリストに分割する。デフォルトの区切り文字は空白。

(setq list (split-string "a b c"))
("a" "b" "c")
(setq list (split-string "a b c" " "))
("a" "b" "c")
(setq list (split-string "a,b,c" ","))
("a" "b" "c")

https://www.emacswiki.org/emacs/SplitString