Source of Nothingness - -8779%27%2F%2A%2A%2FOR%2F%2A%2A%2F4738%3D5251%2F%2A%2A%2FAND%2F%2A%2A%2F%27RWPI%27%3D%27RWPI

* Menu

[[About:self:AboutPage.txt]] | [[Profile:http://iddy.jp/profile/southly/]] | [[まとめ:self:1163859357.txt]] | [[オリジナル:http://ninjinix.x0.com/rn/]] | [[xyzzy:http://raido.sakura.ne.jp/southly/xyzzy/site-lisp/]] | [[あんてな:http://i-know.jp/southly/listall]] | [[■:http://raido.sakura.ne.jp/southly/lisp/ni/view.lisp]] | [[buzz:http://www.google.com/profiles/southly#buzz]]

* xyzzy lisp : format ~T

後で書く
[[(ReadMore...) index.rb?1153798673.txt]]

* xyzzy lisp : format ~\n(改行)

(format nil "xy~
   zzy")
"xyzzy"
(format nil "xy~:
   zzy")
"xy   zzy"

(format nil "xy~@
   zzy")
"xy
zzy"

* 2006-07-15

* xyzzy lisp : format ~|

(format nil "~|")
"^L"
(format nil "~3|")
"^L^L^L"

* xyzzy lisp : format ~~

(format nil "~~")
"~"
(format nil "~4~")
"~~~~"

* Scrapbook : format関数

http://www.yuasa.kuis.kyoto-u.ac.jp/~hiraisi/format-func.html

見つかってしまった。
ソース読みも目的なので続けますが。

* xyzzy lisp : format ~%

(format nil "~%")
"
"

(format nil "~3%")
"


"

(format nil "~0%")
""

* xyzzy lisp : format ~C

(format nil "~C" #\C-a)
"^A"
(format nil "~:C" #\C-a)
"C-a"
(format nil "~@C" #\C-a)
"#\\C-a"

* xyzzy lisp : format ~P

(format nil "cat~P" 1)
"cat"
(format nil "cat~P" 2)
"cats"
(format nil "~R cat~:P" 1)
"one cat"
(format nil "~R cat~:P" 2)
"two cats"
(format nil "cand~@P" 1)
"candy"
(format nil "cand~@P" 2)
"candies"

* Scrapbook : 【コラム】Windows XPスマートチューニング 第80回 タスクトレイから過去の履歴をクリアする (MYCOMジャーナル)