Icon Length

Unit: Internal

Available In: Client and Server Applications

function Length(const Value: String): Integer

function Length(const Value: array of <Type>): Integer

The Length function returns the length of the String or array input parameter. The return value is an Integer value.

Examples

X := Length('How long is this string');  // X is 23
Image