Difference between revisions of "LowerStr"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Converts the uppercase letters of a specified string expression to a lowercase. ==== Usage ==== <syntaxhighlight>LowerStr("String")</syntaxhighlight> Where: String -...")
 
Line 1: Line 1:
Converts the uppercase letters of a specified string expression to a lowercase.  
+
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.
 
   
 
   
==== Usage ====
+
== Usage ==
 
<syntaxhighlight>LowerStr("String")</syntaxhighlight>  
 
<syntaxhighlight>LowerStr("String")</syntaxhighlight>  
  
Where: [[String]]  - a string expression to be converted  
+
Where:  
+
 
==== Example ====
+
:'''String''' - a string expression to be converted.
<syntaxhighlight>LowerStr("Return on Account");  will return a string expression "return on account"</syntaxhighlight>
 
 
   
 
   
 +
== Example ==
 +
<syntaxhighlight>LowerStr("Return on Account");</syntaxhighlight>
 +
Will return a string expression "return on account".
 +
 +
== Notes ==
 +
* See [[UpperStr]] to convert a string to upper case.
  
 
[[Category:Text Manipulation]]
 
[[Category:Text Manipulation]]

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 lowercase, 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.