Difference between revisions of "Array.joincolumnswith()"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "By use of this command, each element from an original array is joined/added with the element specified in the argument. The new element (if with different data type) is joined...")
 
 
Line 1: Line 1:
 +
*[[ Z3 | << Z3 Home ]]
 +
*[[ Z%5E3_Language_Documentation | Z3 Language Documentation]]
 +
*[[ Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member Functions]]
 +
 +
 +
 
By use of this command, each element from an original array is joined/added with the element specified in the argument. The new element (if with different data type) is joined after each element of original array.
 
By use of this command, each element from an original array is joined/added with the element specified in the argument. The new element (if with different data type) is joined after each element of original array.
  

Latest revision as of 06:02, 23 May 2020


By use of this command, each element from an original array is joined/added with the element specified in the argument. The new element (if with different data type) is joined after each element of original array.


Examples

1.

a=1,3,4,3,5,7,9;
a.joincolumnswith(["join"])

-->Displays output as 1 join 3 join 4 join 3 join 5 join 7 join 9 join

2.

a=MAGICSQUARE(3);
a.joincolumnswith([3])

-->Displays output as 5 10 9 12 8 4 7 6 11.
Here each element is added with '3'. Output array is displayed as single dimensional array, with addition to first elements of all rows to display as first row of output array, and so on.


See Also