todecimal()

Learn how to use the todecimal() function to convert the input expression to a decimal number representation.

Converts the input to a decimal number representation.

Syntax

todecimal(value)

Parameters

NameTypeRequiredDescription
valuescalar✔️The value to convert to a decimal.

Returns

If conversion is successful, result will be a decimal number. If conversion isn’t successful, result will be null.

Example

print todecimal("123.45678") == decimal(123.45678)

Output

print_0
true