[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Format a string with given arguments.
Source position: sysstrh.inc line 159
procedure FmtStr( |
var Res: string; |
const Fmt: string; |
const args: array of Const |
); |
var Res: string; |
const Fmt: string; |
const args: array of Const; |
const FormatSettings: TFormatSettings |
); |
FmtStr calls Format with Fmt and Args as arguments, and stores the result in Res. For more information on how the resulting string is composed, see Format.
In case of error, a EConvertError exception is raised.
|
Format a string with given arguments. |
|
|
Format a string with given arguments and store the result in a buffer. |
|
|
Conversion error. |
Program Example70; { This program demonstrates the FmtStr function } Uses sysutils; Var S : AnsiString; Begin S:=''; FmtStr (S,'For some nice examples of fomatting see %s.',['Format']); Writeln (S); End.