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