シグネチャ
{define-text-proc public {message
out:#TextOutputStream = null,
locale:#Locale = null,
...
}:String
}テキストのメッセージを文字列に変換します。
説明
注意事項
例
{StringBuf
{message
There are many ways to initialize a StringBuf,
but this way may be convenient when the initial
contents are textual. This is especially true
when those contents are long.
}
}
{StringBuf
"There are many ways to initialize a StringBuf, but this way may be convenient when the initial contents are textual. This is especially true when those contents are long."
}
例
{StringBuf
{message
The value of a variable can be included easily,
such as {value int-max}, and so can the value of
curly expressions, such as {format "%.2f", 22 / 7}.
}
}
{StringBuf
{format
"The value of a variable can be included easily, such as %s and so can the value of curly expressions, such as %s.",
int-max, {format "%.2f", 22 / 7}
}
}