Convert a text string to lower case.
string strlower <string:Text>
Name | Type | Comment |
---|---|---|
Text | string | The text string to be converted to lower case. |
A string containing the input text converted to lower case.
echo <strlower "THIS WAS ALL UPPER CASE">
… the output of which is written to the event log by echo as:
this was all upper case
None.