Indy 9
|
function IsNumeric(AChar: Char): Boolean; overload; function IsNumeric(const AString: string): Boolean; overload;
When using the character variant of the function, IsNumeric checks AChar against a character set containing the characters '0'..'9'.
When using the string variant of the function, IsNumeric checks AString for valid numeric content using the Val procedure.