Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
bgColorwhite

BOOLEAN


Converts a value of a string into a Booleanboolean


Syntax

Code Block
BOOLEAN(string, [format])


Inputs

  • string - The string value that is converted to Booleanboolean

  • format (optional) - The format used for conversion. Format must be enclosed by quotes, e.g. ”1;0”. 


Default formats

For all conversion functions that use a string as parameter, the [format] describes the format in which the input string value parameter is in. When not specifying a format, by default this format is used: 

  • string to Bboolean - true;false. 


Return type

  • Booleanboolean


Examples

  • BOOLEAN(“1”,”1;0”) results in a Boolean boolean value TRUE.  

Back to top