lowercase
Overview
The lowercase
statement is used to set all letters in a variable or named buffer to lower case.
Syntax
lowercase
var_name
lowercase
{buf_name}
Details
The single parameter to the lowercase
statement determines whether or not the text to be normalised to lower case is located in a variable value or in a named buffer.
If the parameter starts and ends with {
and }
respectively then the text to be processed is in the named buffer identified by the contents of the curly braces.
If not, then the text to be processed is the value of the variable named by the parameter.
Examples
The following script:
... produces the following output:
Last updated