in Array: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
(redirect)
 
(23 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{{Command|= Comments
#REDIRECT [[in]]
____________________________________________________________________________________________
 
| ofp |= Game name
 
|1.00|= Game version
 
|arg= local |= Arguments in MP
____________________________________________________________________________________________
 
| Checks whether x is equal to any element in the array. If x is a string, the array is checked ''case-sensitive'' (see Example 2).  |= Description
____________________________________________________________________________________________
 
| ''x'' '''in''' Array |= Syntax
|p1 = x: [[Any Value]]
|p2 = Array: [[Array]]
| [[Boolean]] |= Return value
____________________________________________________________________________________________
|x1 = <code> 1 '''in''' [0, 1, 2] </code>
 
Result is true 
|x2 = <code> "lol" '''in''' ["Lol", "LOL", "loL"] </code>
 
Result is false
|[[count array]], [[find]] |= See also
 
}}
 
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<!-- Note Section BEGIN -->
For a case-''insensitive'' test use the [[count]] command:
<code>{_x=="lol"} count ["Lol", "LOL", "loL"]</code> returns 3.
 
 
Checking if an array (for example a position) is in another array doesn't produce an error, but it will always return false. For example:
[0,0,0] in [[0,0,0],[1,4,3],[5,3,1]] //returns: false
--[[User:T D|T_D]] 15:58, 18 January 2007 (CET)
<!-- Note Section END -->
</dl>
 
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|INARRAY]]
[[Category:Scripting Commands OFP 1.96|INARRAY]]
[[Category:Scripting Commands OFP 1.46|INARRAY]]
[[Category:Scripting Commands ArmA|INARRAY]]
[[Category:Command_Group:_Variables|{{uc:{{PAGENAME}}}}]]

Latest revision as of 22:07, 3 February 2016

Redirect to: