tobool()

Convert inputs to boolean (signed 8-bit) representation.

The tobool() and toboolean() functions are equivalent

Note

When possible, use bool literals instead.

Syntax

tobool(value)

Learn more about syntax conventions.

Parameters

Name Type Required Description
value string ✔️ The value to convert to boolean.

Returns

If conversion is successful, result will be a boolean. If conversion isn't successful, result will be null.

Example

tobool("true") == true
tobool("false") == false
tobool(1) == true
tobool(123) == true