Concatenate arrays
-
Hi everyone!
Is possible to concatenate arrays?
I've tried array1 += array2 but it didn't work (I got an "operation not recognized" error).
Thanks in advanced!
-
No quick way of doing that, I’m afraid. You need to loop over the second array and add each element to the first array.
(Or add elements from both to a new array. )
-
Thanks for your answer! I did it the way you said to get my array completed. Maybe it would be nice if some kind of concatenate is introduced in future releases ¿?