Difference between revisions of "UpperStr"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Converts the lowercase letters of a specified string expression to uppercase. ==== Usage ==== <syntaxhighlight>UpperStr("String")</syntaxhighlight> Where: String - a...")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
Converts the lowercase letters of a specified string expression to uppercase.  
+
Converts the lower case letters of a specified string expression to upper case. If the string is already in upper case, the upper case string will be returned.
 
   
 
   
==== 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".
 +
 +
== Notes ==
 +
* See [[LowerStr]] to convert a string to lower case.
  
 
[[Category:Text Manipulation]]
 
[[Category:Text Manipulation]]

Latest revision as of 07:35, 9 February 2012

Converts the lower case letters of a specified string expression to upper case. If the string is already in upper case, the upper case string will be returned.

Usage

UpperStr("String")

Where:

String - a string expression to be converted.

Example

UpperStr("msft");

Will return a string expression "MSFT".

Notes

  • See LowerStr to convert a string to lower case.