strupcase(X)

Returns the given string with all lowercase characters converted to uppercase.

Syntax

strupcase(X)
bstrupcase(X)

Input

Argument Type Description
X text A scalar value or the name of a column

Return Value

Returns the text value corresponding to X with all lowercase characters converted to uppercase.

If X is N/A, then the result is N/A.

Sample Usage

value strupcase(value)
'Parfüm' 'PARFÜM'

Additional Information

  • strupcase is Unicode (UTF-8) compliant and will work with Unicode or plain ASCII text fields.
  • If passed a string argument that is not legal Unicode, it will by default signal an error (configurable as a user preference).
  • A corresponding function bstrupcase can be used with non-Unicode strings (e.g., binary or legacy encodings).
  • Generic (non-language-specific) Unicode case conversion is used.