func X3.EN_TEXT_IS_NUMERIC(Clbfile TEXT_TO_TEST_IN) : Tinyint

Allows you to test if a string contains a numeric value

  • TEXT_TO_TEST_IN Clbfile String to test
Return Tinyint 1 if yes and 0 if no
Example

The string "123.54" will return the value 1
The string "456" will return the value 1
The string "four" will return the value 0