todecimal()

Converts the input to a decimal number representation.

Note

When possible, use decimal literals instead.

Syntax

todecimal(value)

Learn more about syntax conventions.

Parameters

Name Type Required Description
value scalar ✔️ 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