MidStr

From MultiCharts
Revision as of 14:32, 25 January 2012 by 194.84.116.138 (talk) (Created page with "Returns a part, starting from a specified position and of a specified length, of a specified string expression. ==== Usage ==== <syntaxhighlight>MidStr("String",Pos,Num)</s...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Returns a part, starting from a specified position and of a specified length, of a specified string expression.

Usage

MidStr("String",Pos,Num)

Where: String - a string expression the specified part is to be taken from

Pos - a numerical expression specifying the position, from the left side of the string, of the starting character of the part

Num - a numerical expression specifying the length, in characters, of the part

Example

MidStr("Largest winning trade",1,7);  will return a string expression "Largest"