Difference between revisions of "StrLen"

From MultiCharts
Jump to navigation Jump to search
m
m
 
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>  
  
Line 8: Line 8:
 
:'''String''' - a string expression to be evaluated.
 
:'''String''' - a string expression to be evaluated.
 
   
 
   
==== Example ====
+
== Example ==
 
<syntaxhighlight>StrLen("Drawdown");</syntaxhighlight>
 
<syntaxhighlight>StrLen("Drawdown");</syntaxhighlight>
 
Will return a value of 8.
 
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.