*LOWER command: Difference between revisions
Line 26: | Line 26: | ||
END | END | ||
</p> | </p> | ||
<p>This request prints the string '*LOWER' in uppercase at the terminal. Refer to the [[Operations_on_Multiply_Occurring_Fields#PRINT_and_PRINT_n_statements|PRINT | <p>This request prints the string '*LOWER' in uppercase at the terminal. Refer to the [[Operations_on_Multiply_Occurring_Fields#PRINT_and_PRINT_n_statements|PRINT and PRINT n statements]] topic for a description of the PRINT statement.</p> | ||
<p class="note"><b>Note:</b> Two keywords, UPCASE and NOCASE, can be used with screen input items. If UPCASE is specified, all input is translated to uppercase. If NOCASE is specified, then input is not translated. If neither UPCASE nor NOCASE is specified, the *LOWER/*UPPER setting determines whether or not screen input is translated. </p> | <p class="note"><b>Note:</b> Two keywords, UPCASE and NOCASE, can be used with screen input items. If UPCASE is specified, all input is translated to uppercase. If NOCASE is specified, then input is not translated. If neither UPCASE nor NOCASE is specified, the *LOWER/*UPPER setting determines whether or not screen input is translated. </p> | ||
[[Category: General user commands]] | [[Category: General user commands]] | ||
[[Category:Commands]] | [[Category:Commands]] |
Revision as of 18:46, 16 July 2013
Summary
- Privileges
- Any user
- Function
- Deactivates Model 204's automatic translation of lowercase characters to uppercase characters
Format
*LOWER
Example
PRINT '*LOWER'
Usage notes
The *LOWER command deactivates the translation of lowercase to uppercase characters. This translation, which is performed automatically by Model 204, causes lowercase input from the terminal to be converted to uppercase before it is processed. If the user enters *LOWER (in uppercase) at a terminal, lowercase characters are preserved.
Model 204 allows *LOWER to be entered whenever Model 204 is expecting input. Unless *LOWER is preceded by a leading blank or blanks, it is always processed as a command. For example:
BEGIN PRINT '*LOWER' PRINT 'hello' PRINT 'HELLO' END
This request invokes the *LOWER command, and then prints the strings, 'hello', in lowercase, and 'HELLO', in uppercase, at the terminal. On the other hand:
BEGIN PRINT '*LOWER' END
This request prints the string '*LOWER' in uppercase at the terminal. Refer to the PRINT and PRINT n statements topic for a description of the PRINT statement.
Note: Two keywords, UPCASE and NOCASE, can be used with screen input items. If UPCASE is specified, all input is translated to uppercase. If NOCASE is specified, then input is not translated. If neither UPCASE nor NOCASE is specified, the *LOWER/*UPPER setting determines whether or not screen input is translated.