% Function MAKE-STRING-OUTPUT-STREAM
Function MAKE-STRING-OUTPUT-STREAM
make-string-output-stream
&key
element-type => string-stream
element-type - 型指定子。デフォルトはcharacter
。
string-stream - 出力文字列ストリーム
文字列を受け付ける出力の文字列ストリームを返却します。
これは実際に出力された文字を含む文字列を
(get-output-stream-string
によって)作成することができます。
element-typeは文字列の要素の型を示す名前です。 文字列はelement-typeの要素を収容できるような 特定化された型によって構築されます。
(let ((s (make-string-output-stream)))
(write-string "testing... " s)
(prin1 1234 s)
(get-output-stream-string s))
=> "testing... 1234"
なし。
なし。
get-output-stream-string
,
with-output-to-string
なし。