Acad strlsort

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(acad_strlsort list)


機能
文字列のリストを文字コード順にソートする。


引数
  • list : ソートする文字列のリスト。


戻り値
文字コード順に並んだリスト。
* list が無効か、ソートを行う為のメモリが不足している場合、acad_strlsort 関数は nil を返す。


サンプル
(setq holiday '("Sun" "Mon" "Sat"))
(acad_strlsort holiday)  
("Mon" "Sat" "Sun")

(setq Week '("月" "火" "水" "木" "金" "土"))
(acad_strlsort Week)
("火" "金" "月" "水" "土" "木")