BIS fnc findInPairs: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Some wiki formatting)
m (Text replacement - " (\|[pr][0-9]+ *= *[^-]+) *- *A([a-z])" to " $1 - a$2")
Line 10: Line 10:
|s1= [array, key] call [[BIS_fnc_findInPairs]]
|s1= [array, key] call [[BIS_fnc_findInPairs]]


|p1= array: [[Array]] - Array to search through
|p1= array: [[Array]] - array to search through


|p2= key: [[String]] - Key to search for
|p2= key: [[String]] - Key to search for

Revision as of 13:40, 8 November 2023

Hover & click on the images for description

Description

Description:
Searches the associative array for the first occurance of the key string and returns its index. Seach is not case-sensitive.
Execution:
call
Groups:
Arrays

Syntax

Syntax:
[array, key] call BIS_fnc_findInPairs
Parameters:
array: Array - array to search through
key: String - Key to search for
Return Value:
Number - Index of first occurence

Examples

Example 1:
[[["apple",3],["pear",2]],"apple"] call BIS_fnc_findInPairs; // Returns 0

Additional Information

See also:
find findIf BIS_fnc_getFromPairs BIS_fnc_addToPairs BIS_fnc_removeFromPairs BIS_fnc_setToPairs

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note