I have a text file full of data that I need to split into 8 arrays
this data looks like this: columns are are separated by spaces and each row is separated by a new line
201901010000 001 2458484.50001 300.0 0.0 -90.0 0.8 6.519E-12
201901010000 001 2458484.50001 300.0 0.0 -80.0 0.8 5.959E-12
I want 8 different array filled with the data from each column. so the first array would look like [201901010000, 201901010000, etc]
.
I've tried using split but it either creates a new array for every value or every row.