Icon IsFloat

Unit: WebCore

Available In: Client and Server Applications

function IsFloat(const Value: String): Boolean

The IsFloat function returns True if the input parameter is a valid floating-point string. The decimal separator used in the formatted string is determined by the TFormatSettings DecimalSeparator property.

Examples

X := IsFloat('200.10');  // X is True
Image