+: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) (Page creation) |
Lou Montana (talk | contribs) m (Add unary plus) |
||
Line 16: | Line 16: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| | | numberA [[+]] numberB |Syntax= | ||
|p1= | |p1= numberA: [[Number]] |Parameter 1= | ||
|p2= | |p2= numberB: [[Number]] |Parameter 2= | ||
| [[Number]] |Return Value= | | [[Number]] - the sum of ''numberA'' and ''numberB'' |Return Value= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
|s2= | |s2= [[+]] numberA |Alternative Syntax= | ||
|p21= | |p21= numberA: [[Number]] |Alternative Parameter 1= | ||
| | |r2= [[Number]] - returns ''numberA'' |Alternative Return Value= | ||
____________________________________________________________________________________________ | |||
| | |s3= arrayA [[+]] arrayB |Alternative Syntax 3= | ||
|p41= arrayA: [[Array]] |Alternative 3 Parameter 1= | |||
|p42= arrayB: [[Array]] |Alternative 3 Parameter 2= | |||
|r3= [[Array]] - a new array filled with ''arrayA'' and ''arrayB'' elements, in that order. |Alternative 3 Return Value= | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| | |s4= stringA [[+]] stringB |Alternative Syntax 4= | ||
| | |p61= stringA: [[String]] |Alternative 4 Parameter 1= | ||
| | |p62= stringB: [[String]] |Alternative 4 Parameter 2= | ||
| | |r4= [[String]] - a string concatenating ''stringA'' and ''stringB'' |Alternative 4 Return Value= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| | |s5= [[+]] arrayA |Alternative Syntax 5= | ||
| | |p81= arrayA: [[Array]] |Alternative 5 Parameter 1= | ||
| | |r5= [[Array]] - a new instance of array filled with same items. |Alternative 5 Return Value= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
|x1= <code>5 [[+]] 3; | |x1= <code> 5 [[+]] 3; {{codecomment|// returns 8}} | ||
-5 [[+]] -3; {{codecomment|// returns -8}}</code> |Example 1= | -5 [[+]] -3; {{codecomment|// returns -8}}</code> |Example 1= | ||
|x2= <code>_arrayA = [1,2,3]; | |x2= <code>[[+]] 2; {{codecomment|// returns 2}} | ||
_arrayB = [4,5 | [[+]] -7; {{codecomment|// returns -7}}</code> |Example 2= | ||
_arrayAB = _arrayA + _arrayB; {{codecomment|// _arrayAB {{=}} [1,2,3,4,5 | |||
// _arrayA and _arrayB remain unchanged}}</code> |Example | |x3= <code>_arrayA = [1,2,3]; | ||
_arrayB = [3,4,5]; | |||
_arrayAB = _arrayA + _arrayB; {{codecomment|// _arrayAB {{=}} [1,2,3,3,4,5] | |||
// _arrayA and _arrayB remain unchanged}}</code> |Example 3= | |||
| | |x4= <code>_result = "Hello" + " " + "there"; {{codecomment|// "Hello there"}}</code> |Example 4= | ||
| | |x5= <code>_arrayA = [1,2,3]; | ||
_arrayB = +_arrayA; | _arrayB = +_arrayA; | ||
_arrayB [[set]] [0, 99]; {{codecomment|// _arrayA {{=}} [1,2,3], _arrayB {{=}} [99,2,3]}}</code> |Example | _arrayB [[set]] [0, 99]; {{codecomment|// _arrayA {{=}} [1,2,3], _arrayB {{=}} [99,2,3]}}</code> |Example 5= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Revision as of 12:03, 7 February 2019
Description
- Description:
- Add two numbers, concatenate two arrays or two strings, or duplicate an array.
- Groups:
- Uncategorised
Syntax 1
- Syntax:
- numberA + numberB
- Parameters:
- numberA: Number
- numberB: Number
- Return Value:
- Number - the sum of numberA and numberB
Syntax 2
Syntax 3
- Syntax:
- arrayA + arrayB
- Parameters:
- arrayA: Array
- arrayB: Array
- Return Value:
- Array - a new array filled with arrayA and arrayB elements, in that order.
Syntax 4
- Syntax:
- stringA + stringB
- Parameters:
- stringA: String
- stringB: String
- Return Value:
- String - a string concatenating stringA and stringB
Syntax 5
- Syntax:
- + arrayA
- Parameters:
- arrayA: Array
- Return Value:
- Array - a new instance of array filled with same items.
Examples
- Example 1:
5 + 3; // returns 8 -5 + -3; // returns -8
- Example 2:
+ 2; // returns 2 + -7; // returns -7
- Example 3:
_arrayA = [1,2,3]; _arrayB = [3,4,5]; _arrayAB = _arrayA + _arrayB; // _arrayAB = [1,2,3,3,4,5] // _arrayA and _arrayB remain unchanged
- Example 4:
_result = "Hello" + " " + "there"; // "Hello there"
- Example 5:
_arrayA = [1,2,3]; _arrayB = +_arrayA; _arrayB set [0, 99]; // _arrayA = [1,2,3], _arrayB = [99,2,3]
Additional Information
- See also:
- Operators
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
Bottom Section
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.00
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Command Group: Uncategorised
- Scripting Commands OFP 1.99
- Scripting Commands OFP 1.96
- Scripting Commands OFP 1.46
- Scripting Commands ArmA
- Scripting Commands ArmA2
- Scripting Commands Arma 3
- Command Group: Math
- Command Group: Variables