ToUpperCase

STD.Str.ToUpperCase( src )

STD.Uni.ToUpperCase( src )

STD.Uni.LocaleToUpperCase( src, locale_name )

srcA string containing the data to change case.
locale_nameA null-terminated string containing the language and country code to use to determine correct sort order and other operations.
Return: ToUpperCase returns a STRING value.

The ToUpperCase functions return the source string with all lower case characters converted to upper case.

Example:

A := STD.Str.ToUpperCase('abcde');
 //A contains 'ABCDE'