Cicode Programming Reference > Cicode Function Categories > String Functions Introduction > StrLength

StrLength

Gets the length of a string.

Syntax

StrLength(String)

String:

The source string.

Return Value

The length of the string (as an integer).

Related Functions

StrRight, StrMid, StrLeft

Example

Variable=StrLength("ABCDEF");
! Sets Variable to 6.

See Also

String Functions