string.upper
Returns a copy of str
with all lowercase letters replaced by their uppercase counterparts.
string.upper(str: string): string
Arguments
Name | Description | Type |
---|---|---|
str | String to upper-case. | string |
Returns upper: string
Returns a copy of str
with all lowercase letters replaced by their uppercase counterparts.
string.upper(str: string): string
Name | Description | Type |
---|---|---|
str | String to upper-case. | string |
Returns upper: string