String.Length

Top  Previous  Next

 

Syntax

function String.Length(StrValue: string): integer

 

Alternative Names

ibec_Length

 

Description

The return value is the length of the given string StrValue in characters.

 

Example

execute udsblock

as

begin

  /* l = 4 */

  l = String.Length('four');

 

  /* l = 5 */

  l = String.Length('five!');

end