[Overview][Constants][Procedures and functions][Index] |
Attempts to convert an ISO 8601-formatted date/time value to a TDateTime type
Source position: dateutil.inc line 462
function TryISOStrToDateTime( |
const aString: string; |
out outDateTime: TDateTime |
):Boolean; |
aString |
|
ISO 8601 date/time value examined in the function |
outDateTime |
|
TDateTime type containing the date and time values from the function |
True if the time value is successfully converted to a TDateTime type
TryISOStrToDateTime is a Boolean function which attempts to convert an ISO 8601-formatted date/time value to a TDateTime type. aString contains the date/time value examined in the routine, and can use one of the supported ISO 8601 notations. Internally, TryISOStrToDateTime separates the value in aString into date and time parts and calls both TryISOStrToDate and TryISOStrToTime.
outDateTime is a TDateTime output parameter where the date/time value is stored in the function.
The return value is True if aString is successfully parsed and converted to a TDateTime type. The return value is False if aString contains a value that cannot be parsed in the function. When the return value is False, outDateTime is set to 0 (representing an empty date/time value).
Use TryISOStrToDate or TryISOStrToTime to convert a string using only a date or a time value (respectively).
Use TryISO8601ToDate to convert a string value which uses more intricate forms of the ISO 8601 time notation.
|
Attempts to convert an ISO 8601-formatted date value to a TDateTime type |
|
|
Converts an ISO 8601-formatted time value to a TDateTime type |
|
|
Attempts to convert an ISO 8601-formatted date/time value to a TDateTime type |