STRISNUM
Tells if a string is a number or not.
Description
Tells if a string is a number or not. If the string is a number, then the output is "1", if not then the output is "0". The decimal separator character is what is set by the operating system (typically "." or ",").
Syntax
STRISNUM [String] [Output variable]
Command parameters
Command parameter | Assignment | Value format | Input options |
---|---|---|---|
String | Required | String | Local, variable |
Output variable | Required | String | Local, variable |
String:
The string that might be a number.
Output variable:
The variable that will store the output.
Sample code
STRISNUM 123 Output_Variable