a hash b: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Fix duplicate argument call)
No edit summary
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Selects an element from an array, same as [[select]] first syntax.
| Selects an element from an [[array |Array]], same as [[select]] command for arrays, but has [[SQF_syntax#Rules_of_Precedence | higher precedence]] |Description=
{{Important|This syntax (array ''select'' index) is the only supported one!}} |Description=
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 19:22, 2 October 2018

Hover & click on the images for description

Description

Description:
Selects an element from an Array, same as select command for arrays, but has higher precedence
Groups:
Uncategorised

Syntax

Syntax:
array # index
Parameters:
array: Array
index: Number
Return Value:
Anything

Examples

Example 1:
[1,2,3,4] # 2; // result is 3
Example 2:
position player # 2; // result is Z coordinate of player's position

Additional Information

See also:
selectselectRandomselectRandomWeightedsetresizereverseinfindtoArraytoStringforEachcountdeleteAtdeleteRangeappendsortparamparamssplitStringjoinStringpushBackpushBackUniqueapply

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

Notes

Bottom Section

Posted on April 25, 2018 - 00:51 (UTC)
KC Grimes
Although not alternative syntax, the below notations work as expected: ["A","B","C"] # 1; //B ["A","B","C"] #1; //B ["A","B","C"]#1; //B ["A","B",["C","D"]]#2#0; //C