System.WideString.Format
C++
static WideString Format(const WideString& format,
const TVarRec *args, int size);
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | wstring.h | System | WideString |
説明
Format は、WideString、書式、および一連の配列引数(args)より、文字列の書式を整えます。
Format を使用すると、WideString を取得でき、その値は、引数の配列(args)を、指定された書式文字列(format)に適用した結果となります。最後のパラメータ(size)は、args 内の最後の要素を指すインデックスです(引数の数より 1 少ない値)。
Format は static メソッドである点に注意してください。 戻り値は、たとえ、メソッドが既存の WideString インスタンスで呼び出された場合でも、新たに確保された WideString です。
Format が書式文字列と引数から、どのように最終的な文字列を組み立てるのかについては、System.SysUtils.Format の「書式文字列」を参照してください。