This function converts a text representing a numerical value to a number.

This function expects a decimal representation of a number. In case it is not possible to parse the text to a number and null is returned.


toNumber(text) #Output: Number



Parser expressionDescription


 %{toNumber("3.14")}


This example return:

3.14



Parameters used in this function

ParameterInput (data type)Description
text

Any given text representing a numerical value.



This function returns a



Use cases and examples



Short descriptionConverts a text to a number.
Output