LOWERCASE
Syntax
LOWERCASE txt_var
Description
Converts the contents of a text variable to lowercase.
Parameters
| Parameter | Description |
|---|---|
|
txt_var |
Specifies a text variable to be converted to lowercase. |
Example
The following example illustrates the LOWERCASE command:
input $answer 'Type EXIT to stop'
lowercase $answer ! Allows user to enter
! upper or lowercase.
if $answer = 'exit'
...etc...
See The lower function listed
in the Miscellaneous Functions table