isdigit

Return 1 if a character is a decimal digit character.

Syntax: x = isdigit(char)

x 1 if char is 0-9
0 otherwise
char The character to test

Example:

Dim x as uByte
x=isdigit("Z")   ' x=0
x=isdigit("5")   ' x=1

Also See: