upper
Convert a string into all uppercase.
def upper(
value: string
) - > string
Convert a string into all uppercase.
Parameters
| Name | Type | Description |
|---|---|---|
| value | string | The string value to be converted to uppercase. |
Returns
| Type | Description |
|---|---|
string | The input string with all characters converted to their uppercase equivalent. |