BIS fnc subSelect: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>") |
Lou Montana (talk | contribs) m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>") |
||
Line 28: | Line 28: | ||
|x1= <code>private _array = ["a","b",true,3,8]; | |x1= <code>private _array = ["a","b",true,3,8]; | ||
[_array, 2] call | [_array, 2] call BIS_fnc_subSelect; {{codecomment|// returns [true,3,8]}}</code> | ||
|x2= <code>[_array, -2] call BIS_fnc_subSelect; {{codecomment|// returns [3,8]}}</code> | |x2= <code>[_array, -2] call BIS_fnc_subSelect; {{codecomment|// returns [3,8]}}</code> |
Revision as of 21:40, 12 July 2022
Description
Syntax
- Syntax:
- [array, start, endOrLength] call BIS_fnc_subSelect
- Parameters:
- array: Array array to select sub array from
- start: Number index of array to begin sub-array. If negative, index is counted from the end of array
- endOrLength: Number - index of array to end the sub-array. If ommitted, remainder of the array will be selected. If negative, it specifies the length of the sub-array (in absolute form)
- Return Value:
- Array
Examples
- Example 1:
private _array = ["a","b",true,3,8]; [_array, 2] call BIS_fnc_subSelect; // returns [true,3,8]
- Example 2:
[_array, -2] call BIS_fnc_subSelect; // returns [3,8]
- Example 3:
[_array, 1, 3] call BIS_fnc_subSelect; // returns ["b",true,3]
- Example 4:
[_array, 1, -2] call BIS_fnc_subSelect; // returns ["b",true]
Additional Information
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