From Bohemia Interactive Community
|
|
| Line 1: |
Line 1: |
| [[Category:Scripting Commands|#]]
| | |
| [[Category:Scripting Commands OFP 1.97|#]]
| |
| [[Category:Scripting Commands OFP 1.46|#]]
| |
| [[Category:Scripting Commands ArmA|#]]
| |
|
| |
|
| back to [[Scripting_Reference#.23|COMREF]] | | back to [[Scripting_Reference#.23|COMREF]] |
Revision as of 15:21, 21 April 2006
back to COMREF
valuea + valueb
Operand types:
valuea: String or Array
valueb: String or Array
Type of returned value:
String or Array
Description:
valuea and valueb are concatenated
Example:
String concatentation - "I" + " am" + " blind" ..........Result is "I am blind"
Array concatenation - [0, 1, 2] + [1, 2, 3] ..........Result is [0, 1, 2, 1, 2, 3]