BIS fnc getFromPairs: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...) |
m (Text replacement - "<h3 style="display:none">Bottom Section</h3>" to "") |
||
Line 30: | Line 30: | ||
}} | }} | ||
[[Category:Functions|{{uc:getFromPairs}}]] | [[Category:Functions|{{uc:getFromPairs}}]] | ||
[[Category:{{Name|arma3}}: Functions|{{uc:getFromPairs}}]] | [[Category:{{Name|arma3}}: Functions|{{uc:getFromPairs}}]] |
Revision as of 01:03, 18 January 2021
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:
[[["apple",3],["pear","test"]],"pear"] call BIS_fnc_getFromPairs; // Returns "test"
- Example 2:
[[["apple",3],["pear",6]],"pear"] call BIS_fnc_getFromPairs; // Returns "6"
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 October 2, 2014 - 01:17 (UTC)
- Benargee
- BIS_fnc_findInPairs renamed to BIS_fnc_getFromPairs and now supports all variable types Source