STD.Uni.LocaleToUpperCase( source, locale )
source | A string containing the data to change case. |
locale | A 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'