Source of Nothingness - -6441

* 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]]

* RandomNote について。

RandomNote について。

→[[ChangeLog self:1141132537.txt]]
→[[Todo self:1140534666.txt]]

* xyzzy lisp : format ~W

(format nil "~W" 'hoge)
"hoge"

* xyzzy lisp : format ~F

(format nil "~F" 123.45)
"123.45"
(format nil "~@F" 123.45)
"+123.45"
(format nil "~10F" 123.45)
"    123.45"
(format nil "~10,5F" 123.45)
" 123.45000"
(format nil "~10,5,2F" 123.45)
"12345.00000"
(format nil "~10,5,2,'#F" 123.45)
"##########"
(format nil "~10,,,,'$F" 123.45)
"$$$$123.45"

* xyzzy lisp : format ~G

* xyzzy lisp : format ~E

(format nil "~E" 123.45)
"1.2345e+2"
(format nil "~@E" 123.45)
"+1.2345e+2"
(format nil "~10E" 123.45)
" 1.2345e+2"
(format nil "~10,5E" 123.45)
"1.23450e+2"
(format nil "~10,5,2E" 123.45)
"1.23450e+02"
(format nil "~10,5,2,3E" 123.45)
"123.450e+00"
(format nil "~10,5,2,3,'%E" 123.45)
"%%%%%%%%%%"
(format nil "~15,,,,,'=@E" 123.45)
"=====+1.2345e+2"
(format nil "~15,,,,,,'D@E" 123.45)
"     +1.2345D+2"

* xyzzy lisp : format ~S

(format nil "~S" nil)
"nil"
(format nil "~:S" nil)
"()"
(format nil "~10S" 'hoge)
"hoge      "
(format nil "~10@S" 'hoge)
"      hoge"
(format nil "~10,5@S" 'hogehogehoge)
"   hogehogehoge"
(format nil "~,,5,'$S" 'hoge)
"hoge$$$$$"

* xyzzy lisp : format ~A

(format nil "~A" nil)
"nil"
(format nil "~:A" nil)
"()"
(format nil "~10A" 'hoge)
"hoge      "
(format nil "~10@A" 'hoge)
"      hoge"
(format nil "~10,5@A" 'hogehogehoge)
"   hogehogehoge"
(format nil "~,,5,'#A" 'hoge)
"hoge#####"

* Scrapbook : 全文検索エンジン Hyper Estraier on SAKURA Internet (hiyuzawa.jpn.org)