UCASE Function
Description
The UCASE function is an alias for UPPER. It converts all lowercase letters in the input string to uppercase and returns the converted string.
Parameters
str: The string to be converted to uppercase.
Return Type
- Returns a string where all lowercase letters have been converted to uppercase.
Notes
- The
UCASEfunction is identical to theUPPERfunction and they can be used interchangeably. - The
UCASEfunction only applies to English letters in the input string. Conversion results for other languages or special characters may not meet expectations.
Examples
- Convert a simple string
- Convert a string containing digits and special characters
