Icon IsDate

Unit: WebCore

Available In: Client and Server Applications

function IsDate(const Value: String): Boolean

The IsDate function returns True if the input parameter is a valid date string. The required format of the string is determined by the TFormatSettings ShortDateFormat property.

Examples

X := IsDate('02/13/2012');  // X is True
Image