Core Function isNumeric
From Sputnik Wiki
isNumeric( <expression> )
Contents |
Description
Checks if string only contains numbers.
Parameters
expression
The string to use.
Return Value
Success: Returns 1.
Failure: Returns 0.
Remarks
None.
Example
$str = "The quick brown fox"; MsgBox( isNumeric($str) );