Specifies the string to read.
| 1. |
The following example returns True.
ISNUMERIC("123.450")
|
| 2. |
The following example returns False. Note the final character is the letter 'O', not the number '0'.
ISNUMERIC("123.45O")
|
| 3. |
The following example returns True. Note the final character is a blank space.
ISNUMERIC("123.450 ")
|
| 4. |
The following example returns False. Note the final character is a comma.
ISNUMERIC("123.450,")
|