#include <Array.au3>
Local $aValues[2][2] = [["JobTitle1","Health Assistant, Health Aide"],["JobTitle2","Health Advisor"]]
Local $sSearch = "Health"
_ArrayDisplay($aValues)
For $i = 0 To UBound($aValues) - 1
ConsoleWrite($aValues[$i][0] & " > ")
ConsoleWrite(_ArraySearch($aValues, $sSearch, $i, $i, 0, 1, 1, 1) & @CR)
NextÂ
The following code should have arraysearch fail both tests.
While "Health" is contained within both rows they are not exact matches.
Is there another