Difference between revisions of "RightStr"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Returns one or more rightmost characters from the specified string expression. ==== Usage ==== <syntaxhighlight>RightStr(String,sSize)</syntaxhighlight> Where: String...")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
Returns one or more rightmost characters from the specified string expression.  
 
Returns one or more rightmost characters from the specified string expression.  
 
   
 
   
==== Usage ====
+
== Usage ==
<syntaxhighlight>RightStr(String,sSize)</syntaxhighlight>  
+
<syntaxhighlight>RightStr(String, sSize)</syntaxhighlight>  
  
Where: [[String]]  - a string expression from which the characters are to be taken
+
Where:  
 +
 
 +
:'''String''' - a string expression from which the characters are to be taken.
 
              
 
              
[[sSize]]  - a numerical expression specifying the number of characters to be returned  
+
:'''sSize''' - a numerical expression specifying the number of characters to be returned.
 
==== Example ====
 
<syntaxhighlight>RightStr("Hello World",5);  will return a string expression "World"</syntaxhighlight>
 
 
   
 
   
 +
== Example ==
 +
<syntaxhighlight>RightStr("Hello World", 5);</syntaxhighlight>
 +
Will return a string expression "World".
 +
 +
== Notes ==
 +
* See [[LeftStr]] to return the leftmost part of a string,
 +
* See [[MidStr]] to return a middle part of a string,
 +
* See [[InStr]] to get the starting location of a expression in a string.
 
[[Category:Text Manipulation]]
 
[[Category:Text Manipulation]]

Latest revision as of 07:39, 9 February 2012

Returns one or more rightmost characters from the specified string expression.

Usage

RightStr(String, sSize)

Where:

String - a string expression from which the characters are to be taken.
sSize - a numerical expression specifying the number of characters to be returned.

Example

RightStr("Hello World", 5);

Will return a string expression "World".

Notes

  • See LeftStr to return the leftmost part of a string,
  • See MidStr to return a middle part of a string,
  • See InStr to get the starting location of a expression in a string.