Versions Compared

Key

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

LENGTH


Returns the length of a string. 


Syntax

Code Block
LENGTH ( string )



Inputs

  • string - An attribute of base type string, an expression that results in a string or a constant string value.


Return type

  • integer
note
UI Text Box
type
Info

Spaces at the start of the end of the string are counted as well, the string is not trimmed.


Example

ExpressionResultType
LENGTH ( "Blueriq" )7Integer
LENGTH ( " Blueriq " )9Integer
LENGTH ( ? )?Integer

Back to top