J
John Bokma
Edward said:Hi,
I have again this array:
@array1 = (ab, bc, cd, ...)
@array2 = (cc, dd, ee, ...)
with: print join("\n", @array), "\n";
it does give:
ab
bc
cd
Can we extend it to for multiple array?
so that it gives:
ab cc
bc dd
cd ee
I tried print join ("\n", @array1, @array2), "\n";
But of no result.
that prints first array1, then array2 etc...
you must specify more exactly, what if array1 is smaller / bigger than
array2?