IsNumeric()

Namespace ›› System ›› Mfunc ›› Methods ››
Parent Previous Next

IsNumeric()

OutputVar := Mfunc.IsNumeric(num)

Mfunc.IsNumeric(num)

Checks to see if a param num is numeric.

Parameters

num

A var to check to see if it contains a number

Returns

Returns true if num is numeric; Otherwise false.

Remarks

String Values containing numbers such as "100" and "0x100A" will return true However "100a" will return false.
Static method.

Related

IsInteger(), IsFloat(), MfFloat, MfInteger, MfInt64, MfByte

Example

MsgBox % Mfunc.IsNumeric(100)        ; Displays 1 for true
MsgBox % Mfunc.IsNumeric(-100)       ; Displays 1 for true
MsgBox % Mfunc.IsNumeric(-100.899)   ; Displays 1 for true
MsgBox % Mfunc.IsNumeric(+100)       ; Displays 1 for true
MsgBox % Mfunc.IsNumeric(+1000.889)  ; Displays 1 for true
MsgBox % Mfunc.IsNumeric("100")      ; Displays 1 for true
MsgBox % Mfunc.IsNumeric("0x100A")   ; Displays 1 for true
MsgBox % Mfunc.IsNumeric(0x100A)     ; Displays 1 for true
MsgBox % Mfunc.IsNumeric("100a")     ; Displays 0 for false
MsgBox % Mfunc.IsNumeric("a100")     ; Displays 0 for false
MsgBox % Mfunc.IsNumeric("a")        ; Displays 0 for false