Returns the specified character expression in uppercase.
UPPER(cExpression) |
Parameters
- cExpression
- Specifies the character expression UPPER(В ) converts to uppercase.
Return Value
Character
Remarks
Each lowercase letter (a – z) in the character expression is converted to uppercase (A – Z) in the returned string. This is true for high-ASCII characters as well, even if the current font does not display them as lowercase accented characters.
Example
В | ![]() |
---|---|
CLEAR ? UPPER('abcdefgh') && Displays ABCDEFGH |