I have a file containing about 2 million lines of this type:
I want to split this file and save it with name based on the first column. The number of rows per file varies.
I was thinking using underscore as a replacement for the / in the name of the files.
It is not that important what is used as long as the files can be easily identified so I don't import the data into the wrong place afterwards.
Code: Select all
204/23-1 3878.88 97
204/23-1 3879.03 97
204/23-1 3879.18 97
204/23-1 3879.33 97
204/23-1 3879.48 97
204/23-1 3879.63 97
204/23-1 3879.78 97
204/23-1 3879.93 97
204/24-1A 0458.63 0
204/24-1A 0458.78 0
204/24-1A 0458.93 0
204/24-1A 0459.08 0
204/24-1A 0459.23 0
204/24-1A 0459.38 0
204/24-1A 0459.53 0
204/24-1A 0459.68 0
I was thinking using underscore as a replacement for the / in the name of the files.
It is not that important what is used as long as the files can be easily identified so I don't import the data into the wrong place afterwards.