[Overview][Constants][Types][Procedures and functions][Index] |
Indicates whether the characters in the specified value are numeric digits in the range '0'..'9'.
Source position: lazstringutils.pas line 45
function IsNumeric( |
s: string |
):Boolean; |
s |
|
String with the characters examined in the routine. |
Returns True if all of the characters in s are in the range '0'..'9'.
Examines each character in s (in reverse order).
Returns True if all of the characters in s are in the range '0'..'9'. Returns False if any character is not in the required range, or when s is an empty string ('').
Added in LazUtils version 4.0. Replaces the deprecated IsNumber() routine.
Version 4.0 | Generated 2025-05-03 | Home |