+1 888 340 6572

UpperStr: Difference between revisions

From MultiCharts
(Created page with "Converts the lowercase letters of a specified string expression to uppercase. ==== Usage ==== <syntaxhighlight>UpperStr("String")</syntaxhighlight> Where: String - a...")
 
mNo edit summary
Line 1: Line 1:
Converts the lowercase letters of a specified string expression to uppercase.  
Converts the lowercase letters of a specified string expression to uppercase.  
   
   
==== Usage ====
== Usage ==
<syntaxhighlight>UpperStr("String")</syntaxhighlight>  
<syntaxhighlight>UpperStr("String")</syntaxhighlight>  


Where: [[String]] - a string expression to be converted  
Where:  
 
==== Example ====
:'''String''' - a string expression to be converted.
<syntaxhighlight>UpperStr("msft");  will return a string expression "MSFT"</syntaxhighlight>
   
   
== Example ==
<syntaxhighlight>UpperStr("msft");</syntaxhighlight>
Will return a string expression "MSFT".


[[Category:Text Manipulation]]
[[Category:Text Manipulation]]

Revision as of 07:19, 9 February 2012

Converts the lowercase letters of a specified string expression to uppercase.

Usage

UpperStr("String")

Where:

String - a string expression to be converted.

Example

UpperStr("msft");

Will return a string expression "MSFT".