Clib.isdigit()
syntax: |
Clib.isdigit(chr) |
where: |
chr - a character, a single character string.
|
return: |
boolean - true if chr is in: 0-9.
|
description: |
Returns true if chr is a decimal digit in the following set of characters: 0-9.
|