Return 1 if a character is a decimal digit character.
Syntax: x = isdigit(char)
Example:
Dim x as uByte x=isdigit("Z") ' x=0 x=isdigit("5") ' x=1
Also See: