Click or drag to resize

float.parse Function

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
float.parse Function

The float.parse function converts a given expression to a floating-point numeral.

Syntax

Alchemy
float.parse(expr);

Nomenclature

expr Required. An expression to convert to a floating-point numeral

Returns

A floating-point numeral.

Example

Alchemy
PRINT float.parse("3.1416"); /* 3.1416 */
PRINT float.parse(1.414); /* 1.414 */
PRINT float.parse(3); /* 3 */