I have 2 arrays of data in txt files:
A1 A2 A3
A4 A5 A6
A7 A8 A9
and
B1 B2 B3
B4 B5 B6
B7 B8 B9
I would like to combine them side by side:
A1 A2 A3 B1 B2 B3
A4 A5 A6 B4 B5 B6
A7 A8 A9 B7 B8 B9
(The spaces are actually tabs in my txt files)
Thank you!