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...")
(No difference)

Revision as of 14:37, 25 January 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"