in reply to Re^2: sort csv file on "date" column
in thread sort csv file on "date" column
The logic is to rearrange the date field (for example: 03/25/09) from month-day-year to year-month-day so it can be sorted by the built-in sort function without modification. The algorithm employed is the GRT (Guttman-Rosler Transform) which prepends the reformatted date to the current record, sorts the current record, and then removes the reformatted date from the beginning of the current record.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: sort csv file on "date" column
by mbm (Novice) on Apr 26, 2009 at 18:19 UTC | |
by jwkrahn (Abbot) on Apr 26, 2009 at 23:30 UTC |