upper case
converts a string to upper case
(string subject, string locale) -> string
Returns subject
with all characters converted to upper case as per conventions of the given locale
.
Returns nil
if subject
is nil
or locale
is nil
.
Parameters
Name | Type | Description |
---|---|---|
subject |
string | The string to convert |
locale |
string | The locale to use for the conversion. |