IsDigit( string:string ) → bool
Returns True if string consists entirely of digit characters, otherwise returns False.
Example:
Output(IsDigit("12345")) --> true Output(IsDigit("123a5")) --> false
See also: IsAlpha IsLower IsPunct IsSpace IsUpper