ICultureInfo.TryParseDate

Syntax

TryParseDate(Value: String; Var Result: DateTime): Boolean;

Parameters

Value. Value converted to date format.

Result. Variable containing result in case of successful conversion.

Description

The TryParseDate method checks if the the specified value can be converted into date format according to regional standard settings.

Comments

If conversion is possible, the Result variable will contain the conversion result and the method returns True, otherwise False.

Example

Sub UserProc;
Var
    CI: ICultureInfo;
    Dt: DateTime;
    B: Boolean;
Begin
    CI := CultureInfo.Current;
    B := CI.TryParseDate("25.07.2007 12:12:12", Dt);
End Sub UserProc;

After executing the example the "D" variable contains the date "25.07.2007", and the "B" variable contains the attribute of a successful conversion.

See also:

ICultureInfo