Difference between revisions of "Array IndexOf"

From MultiCharts
Jump to navigation Jump to search
 
Line 5: Line 5:
  
 
Where:  
 
Where:  
:'''ArrayName''' - an expression specifying the name of an numerical/string/bool array.  
+
:'''ArrayName''' - an expression specifying the name of an numerical/string/boolean array.  
:'''Value''' - a numerical/string/bool expression specifying the value to search for.  
+
:'''Value''' - a numerical/string/boolean expression specifying the value to search for.  
 
   
 
   
 
==Example==
 
==Example==
 
Assign an index of value 4 to Value1 variable in the numeric array Array1:  
 
Assign an index of value 4 to Value1 variable in the numeric array Array1:  
  
<syntaxhighlight>Value1=Array_IndexOf(Array1,4);</syntaxhighlight>
+
<syntaxhighlight>Value1 = Array_IndexOf(Array1,4);</syntaxhighlight>
  
  
 
[[Category:Dynamic Arrays]]
 
[[Category:Dynamic Arrays]]

Latest revision as of 13:36, 10 April 2017

Will return index of a specific element in one-dimensional array. Will return -1 if the array will not contain the specific element.

Usage

Array_IndexOf(ArrayName,Value)

Where:

ArrayName - an expression specifying the name of an numerical/string/boolean array.
Value - a numerical/string/boolean expression specifying the value to search for.

Example

Assign an index of value 4 to Value1 variable in the numeric array Array1:

Value1 = Array_IndexOf(Array1,4);