Difference between revisions of "LowerStr"

From MultiCharts
Jump to navigation Jump to search
m
 
Line 1: Line 1:
Converts the upper case letters of a specified string expression to a lower case. If the string is already in lowercase, the returned string will be in lower case.
+
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 ==
 
== Usage ==

Latest revision as of 07:35, 9 February 2012

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.