-: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Disambig page)
(Page creation)
Line 1: Line 1:
'''-''' can refer to these scripting commands:
{{Command|Comments=
*[[- a]]
____________________________________________________________________________________________
'''Example'''
<code>_number = [[-_a|-]] 10;</code>
*[[a - b]]
'''Example'''
<code>_result = 10 [[a_-_b|-]] 5; //5
_array = [1,2,3] [[a_-_b|-]] [2]; //[1,3]</code>


| ofp |Game name=


==See Also==
|1.00|Game version=
____________________________________________________________________________________________


[[Operators]]
| Subtracts an element from another.
{{Feature arma3|In Arma 3 it is possible to subtract nested arrays.}}|Description=
____________________________________________________________________________________________


{{Disambig}}
| numberA [[-]] numberB |Syntax=
 
|p1 = numberA: [[Number]] |Parameter 1=
 
|p2 = numberB: [[Number]] |Parameter 2=
 
| [[Number]] |Return value=
____________________________________________________________________________________________
 
|s2= arrayA [[-]] arrayB |Syntax 2=
 
|p21 = arrayA: [[Array]] |Parameter 21=
 
|p22 = arrayB: [[Array]] |Parameter 22=
 
|r2= [[Array]] |Return value 2=
____________________________________________________________________________________________
 
|x1 = <code>_result = 10 - 7; {{codecomment|// result is 3}}</code>|Example 1=
 
|x2 = <code>_result = [1, 2, 2, [[player]], "String"] - [2, [[player]], [[player]], "String"]; {{codecomment|// _result is [1]}}</code>|=
 
|x3 = <code>_result = [0, [0], <nowiki>[</nowiki>[0]]] - [0]; {{codecomment|// <nowiki>[</nowiki>[0],<nowiki>[</nowiki>[0]]]}}</code> |Example 3=
 
|x4 = <code>_result = [0, [0], <nowiki>[</nowiki>[0]]] - <nowiki>[</nowiki>[0]]; {{codecomment|// [0,<nowiki>[</nowiki>[0]]] - Since {{arma3}}}}
_result = [0, [0], <nowiki>[</nowiki>[0]]] - <nowiki>[</nowiki><nowiki>[</nowiki>[0]]]; {{codecomment|// [0,[0]] - Since {{arma3}}}}</code> |Example 4=
____________________________________________________________________________________________
 
| [[Array]], [[Operators]] |See also=
}}
 
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<!-- Note Section BEGIN -->
 
<!-- Note Section END -->
</dl>
 
<h3 style="display:none">Bottom Section</h3>
 
[[Category:Scripting Commands|#]]
[[Category:Scripting Commands OFP 1.46|#]]
[[Category:Scripting Commands OFP 1.96|#]]
[[Category:Scripting Commands OFP 1.99|#]]
[[Category:Scripting Commands ArmA|#]]
[[Category:Scripting Commands ArmA2|#]]
[[Category:Scripting Commands Take On Helicopters|#]]
[[Category:Scripting Commands Arma 3|#]]
[[Category:Command_Group:_Math|#]]
[[Category:Command_Group:_Variables|#]]

Revision as of 18:42, 6 February 2019

Hover & click on the images for description

Description

Description:
Subtracts an element from another.
Arma 3
In Arma 3 it is possible to subtract nested arrays.
Groups:
Uncategorised

Syntax

Syntax:
numberA - numberB
Parameters:
numberA: Number
numberB: Number
Return Value:
Number

Alternative Syntax

Syntax:
arrayA - arrayB
Parameters:
arrayA: Array
arrayB: Array
Return Value:
Array

Examples

Example 1:
_result = 10 - 7; // result is 3
Example 2:
_result = [1, 2, 2, player, "String"] - [2, player, player, "String"]; // _result is [1]
Example 3:
_result = [0, [0], [[0]]] - [0]; // [[0],[[0]]]
Example 4:
_result = [0, [0], [[0]]] - [[0]]; // [0,[[0]]] - Since Arma 3 _result = [0, [0], [[0]]] - [[[0]]]; // [0,[0]] - Since Arma 3

Additional Information

See also:
ArrayOperators

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