Link Search Menu Expand Document

UString.ToLocaleUpperCase Method

Explanation Converts lowercase letters in strings to uppercase based on the locale.
In the current implementation, it is synonymous with the ToUpperCase method

This method updates the value of the String object.
Call format var s = str.ToLocaleUpperCase( )
Return value Converted string
Arguments None
Exception None
Example of use
var str = new UString("abcdEFGH");
print(str.ToLocaleUpperCase(), "\n");
print(str, "\n");
    
Related item ToUpperCase method