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

StrLower

Converts a string to lowercase.

Syntax

StrLower(String)

String:

The source string.

Return Value

The string (as lowercase).

Related Functions

StrUpper

Example

Variable=StrLower("ABCDEF");
! Sets Variable to "abcdef".
Variable=StrLower("AbCdEf");
! Sets Variable to "abcdef".

See Also

String Functions