Difference between revisions of "StrLen"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Returns the length, in characters, of a specified string expression. ==== Usage ==== <syntaxhighlight>StrLen("String")</syntaxhighlight> Where: String - a string exp...")
 
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
Returns the length, in characters, of a specified string expression.  
 
Returns the length, in characters, of a specified string expression.  
 
   
 
   
==== Usage ====
+
== Usage ==
 
<syntaxhighlight>StrLen("String")</syntaxhighlight>  
 
<syntaxhighlight>StrLen("String")</syntaxhighlight>  
  
Where: [[String]]  - a string expression to be evaluated  
+
Where:  
 +
 
 +
:'''String''' - a string expression to be evaluated.
 
   
 
   
==== Example ====
+
== Example ==
<syntaxhighlight>StrLen("Drawdown"); will return a value of 8</syntaxhighlight>
+
<syntaxhighlight>StrLen("Drawdown");</syntaxhighlight>
 +
Will return a value of 8.
 
   
 
   
 
[[Category:Text Manipulation]]
 
[[Category:Text Manipulation]]

Latest revision as of 07:45, 9 February 2012

Returns the length, in characters, of a specified string expression.

Usage

StrLen("String")

Where:

String - a string expression to be evaluated.

Example

StrLen("Drawdown");

Will return a value of 8.