NET/MASTER Network Control Language (NCL) Reference Manual
UPPER
Built-in Functions
4–92 106126 Tandem Computers Incorporated
UPPER The UPPER built-in function converts a specified string to uppercase characters in the
native (ASCII) character set. The native character set must be used.
UPPER(
string
)
string
specifies the string to be converted.
Consideration
See also TRANSLATE and LOWER. The TRANSLATE built-in function translates all
or part of a specified string according to input and output translation tables. The
LOWER built-in function translates a supplied string to lowercase characters.
Example
In the following example, the string “abcdef123” is converted to uppercase characters.
The output string is “ABCDEF123”:
&A = abcdef123
&RESULT = UPPER(&A)