BIS fnc findInPairs: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>([^<]*)\{\{cc\|([^{}]+)\}\} *<\/code>" to "<code>$1// $2</code>")
m (Text replacement - "<code> *([^<|{]*) *<\/code>" to "<sqf>$1</sqf>")
Line 16: Line 16:
|r1= [[Number]] - Index of first occurence
|r1= [[Number]] - Index of first occurence


|x1= <code>[[["apple",3],["pear",2]],"apple"] call BIS_fnc_findInPairs; // Returns 0</code>
|x1= <sqf>[[["apple",3],["pear",2]],"apple"] call BIS_fnc_findInPairs; // Returns 0</sqf>


|seealso= [[find]] [[findIf]] [[BIS_fnc_getFromPairs]] [[BIS_fnc_addToPairs]] [[BIS_fnc_removeFromPairs]] [[BIS_fnc_setToPairs]]
|seealso= [[find]] [[findIf]] [[BIS_fnc_getFromPairs]] [[BIS_fnc_addToPairs]] [[BIS_fnc_removeFromPairs]] [[BIS_fnc_setToPairs]]
}}
}}

Revision as of 23:44, 12 July 2022

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 sensitiv.
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