BIS fnc findInPairs: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - ";{{cc|" to "; {{cc|") |
Lou Montana (talk | contribs) m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *K([a-z ])" to "$1 - k$2") |
||
(10 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
|game1= arma3 | |game1= arma3 | ||
|version1= 0.76 | |version1= 0.76 | ||
|gr1 = Arrays | |gr1= Arrays | ||
|descr= | |descr= Searches the associative array for the first occurance of the key string and returns its index. Seach is not case-sensitive. | ||
|s1= [array, key] call [[BIS_fnc_findInPairs]] | |s1= [array, key] call [[BIS_fnc_findInPairs]] | ||
|p1= array: [[Array]] - | |p1= array: [[Array]] - array to search through | ||
|p2= key: [[String]] - | |p2= key: [[String]] - key to search for | ||
|r1= [[Number]] - | |r1= [[Number]] - index of first occurence | ||
|x1= < | |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]] | ||
}} | }} |
Latest revision as of 15:37, 8 November 2023
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:
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