IsNumeric

The IsNumeric function returns a true or false indicating whether an expression represents a valid Number.

Syntax :

IsNumeric(Expression)
Parameters Description
Expression The required expression.

Example :

t=IsNumeric("adsflkj")
t=IsNumeric("42")

Result :

t=false
t=true