*LOWER command: Difference between revisions
No edit summary |
|||
Line 30: | Line 30: | ||
<p>Refer to the [[Processing multiply occurring fields and field groups#PRINT and PRINT n statements|PRINT and PRINT n statements]] topic for a description of the PRINT statement.</p> | <p>Refer to the [[Processing multiply occurring fields and field groups#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/<var>[[*UPPER_command|*UPPER]]</var> setting determines whether or not screen input is translated. </p> | ||
[[Category: User commands]] | [[Category: User commands]] | ||
[[Category:Commands]] | [[Category:Commands]] |
Latest revision as of 11:16, 23 January 2019
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, this request invokes the *LOWER command, and then prints the strings, 'hello', in lowercase, and 'HELLO', in uppercase, at the terminal:
BEGIN PRINT '*LOWER' PRINT 'hello' PRINT 'HELLO' END
On the other hand, this request prints the string '*LOWER' in uppercase at the terminal:
BEGIN PRINT '*LOWER' END
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.