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

StrUpper

Converts a string to uppercase.

Syntax

StrUpper(String)

String:

The source string.

Return Value

The string (as uppercase).

Related Functions

StrLower

Example

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

See Also

String Functions