Cicode Programming Reference > Cicode Function Categories > String Functions > 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, Using the Caret Escape Sequence Character

Published June 2018