LowerStr
From MultiCharts
Converts the upper case letters of a specified string expression to a lower case. If the string is already in lower case, the returned string will be in lower case.
Usage
LowerStr("String")
Where:
- String - a string expression to be converted.
Example
LowerStr("Return on Account");
Will return a string expression "return on account".
Notes
- See UpperStr to convert a string to upper case.