Home > lang > isdigit 
 fr de es it nl pl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration  
Documentation
History
 
IsDigit
Result = IsDigit ( Arg AS String ) AS Boolean
Result = Digit? ( Arg AS String ) AS Boolean

Returns TRUE if the String Arg contains only digits.

A digit is one of the following characters: 0 1 2 3 4 5 6 7 8 9

Example

PRINT IsDigit("1972")

True

PRINT IsDigit("three")

False

See also

Character Test Functions