Find the indices of all ocurrences of a search query between two points in a 1D or 2D array using _ArraySearch()
#include <Array.au3>
_ArrayFindAll ( Const ByRef $aArray, $vValue [, $iStart = 0 [, $iEnd = 0 [, $iCase = 0 [, $iCompare = 0 [, $iSubItem = 0 [, $bRow = False]]]]]] )
$aArray | The array to search |
$vValue | What to search $aArray for |
$iStart | [optional] Index of array to start search |
$iEnd | [optional] Index of array to end search |
$iCase | [optional] If set to 1, search is case sensitive |
$iCompare | [optional] 0 Casting of variables to the same type (default), "string" = 0, "" = 0 or "0" = 0 match (If $iCase = 0) 1 executes a partial search 2 comparison match if variables have same type and same value 3 compares using a regular expression pattern provided as $vValue |
$iSubItem | [optional] Sub-index to search on in 2D arrays |
$bRow | [optional] If True then $iSubItem sets the row to search - False (default) searches columns |
Success: | an array of all index numbers in array containing $vValue. |
Failure: | sets the @error flag to non-zero (see _ArraySearch() description for @error). |
The values of $iCompare can not be combined together.
_ArrayBinarySearch, _ArraySearch
#include <Array.au3>
Local $aArray[5] = [0, 1, 2, 1, 0]
_ArrayDisplay($aArray, "1D array")
Local $aiResult = _ArrayFindAll($aArray, 0)
_ArrayDisplay($aiResult, "Found")
Local $aArray[5][5] = [[0, 1, 2, 1, 0], _
[4, 5, 5, 4, 2], _
[4, 1, 3, 1, 3], _
[0, 3, 2, 1, 0], _
[1, 5, 5, 4, 1]]
_ArrayDisplay($aArray, "2D array")
Local $aResult = _ArrayFindAll($aArray, 0, Default, Default, Default, Default, 4)
_ArrayDisplay($aResult, "Found in Column 4")
$aResult = _ArrayFindAll($aArray, 1, Default, Default, Default, Default, 2, True)
_ArrayDisplay($aResult, "Found in Row 2")