%isnum() Function

Top  Previous  Next

%isnum() function is used to check if the given value is a valid number. The function returns true if it does and false otherwise.

Syntax:

%isnum(expression)
 

Example:

%doif( not(isnum(PRICE/value)) ) 

  %error('INVALID_VALUE : ' + PRICE/value)

%doend()