Link Search Menu Expand Document

UString.ToLocaleLowerCase Method

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

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