BIS fnc getFromPairs: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\|game([0-9])=([^ ]+) * \|version([0-9])=([^ ]+) * " to "|game$1=$2 |version$3=$4 ") |
Lou Montana (talk | contribs) m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *V([a-z ])" to "$1 - v$2") |
||
(9 intermediate revisions by the same user not shown) | |||
Line 11: | Line 11: | ||
|s1= [array, key, defaultValue] call [[BIS_fnc_getFromPairs]] | |s1= [array, key, defaultValue] call [[BIS_fnc_getFromPairs]] | ||
|p1= array: [[Array]] - | |p1= array: [[Array]] - array to search through | ||
|p2= key: [[String]] - | |p2= key: [[String]] - key to search for | ||
|p3= defaultValue: [[Anything]] - (Optional, default [[nil]]) | |p3= defaultValue: [[Anything]] - (Optional, default [[nil]]) default return value if no match was found | ||
|r1= [[Anything]] - | |r1= [[Anything]] - value associated with the key. | ||
|x1= < | |x1= <sqf>[[["apple",3],["pear","test"]],"pear"] call BIS_fnc_getFromPairs; // Returns "test"</sqf> | ||
|x2= < | |x2= <sqf>[[["apple",3],["pear",6]],"pear"] call BIS_fnc_getFromPairs; // Returns "6"</sqf> | ||
|seealso= [[find]] [[findIf]] [[BIS_fnc_findInPairs]] [[BIS_fnc_addToPairs]] [[BIS_fnc_removeFromPairs]] [[BIS_fnc_setToPairs]] | |seealso= [[find]] [[findIf]] [[BIS_fnc_findInPairs]] [[BIS_fnc_addToPairs]] [[BIS_fnc_removeFromPairs]] [[BIS_fnc_setToPairs]] | ||
}} | }} | ||
{{Note | |||
|user= Benargee | |||
|timestamp= 20141002011700 | |||
|text= [[BIS_fnc_findInPairs]] renamed to [[BIS_fnc_getFromPairs]] and now supports all variable types {{Link|http://dev.arma3.com/post/spotrep-00011|Source}} | |||
}} | |||
Latest revision as of 15:53, 8 November 2023
Description
- Description:
- Searches the associative array for the 1st occurance of the key string and returns the value associated with it. Search is not case sensitiv.
- Execution:
- call
- Groups:
- Arrays
Syntax
- Syntax:
- [array, key, defaultValue] call BIS_fnc_getFromPairs
- Parameters:
- array: Array - array to search through
- key: String - key to search for
- defaultValue: Anything - (Optional, default nil) default return value if no match was found
- Return Value:
- Anything - value associated with the key.
Examples
- Example 1:
- Example 2:
Additional Information
- See also:
- find findIf BIS_fnc_findInPairs 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
- Posted on Oct 02, 2014 - 01:17 (UTC)
- BIS_fnc_findInPairs renamed to BIS_fnc_getFromPairs and now supports all variable types Source