[Overview][Constants][Types][Classes][Procedures and functions][Variables] | Reference for unit 'sysutils' (#rtl) |
Return a string representation of a TDateTime value with a given format.
Source position: datih.inc line 123
function FormatDateTime( |
FormatStr: String; |
DateTime: TDateTime |
):String; |
FormatDateTime formats the date and time encoded in DateTime according to the formatting given in FormatStr. The complete list of formatting characters can be found in formatchars.
On error (such as an invalid character in the formatting string), and EConvertError exception is raised.
|
Converts a TDateTime value to a string using a predefined format. |
|
|
Converts a TDateTime value to a date string with a predefined format. |
|
|
Convert a TDateTime time to a string using a predefined format. |
|
|
Convert a date/time string to a TDateTime value. |
Program Example14; { This program demonstrates the FormatDateTime function } Uses sysutils; Var ThisMoment : TDateTime; Begin ThisMoment:=Now; Writeln ('Now : ',FormatDateTime('hh:nn',ThisMoment)); Writeln ('Now : ',FormatDateTime('DD MM YYYY',ThisMoment)); Writeln ('Now : ',FormatDateTime('c',ThisMoment)); End.
No notes exist for this page yet.