I have lots of dates in a column in a CSV file that I need to convert from dd/mm/yyyy to yyyy-mm-dd format. For example 17/01/2010 should be converted to 2010-01-17.
How can I do this in Perl or Python?
|
I have lots of dates in a column in a CSV file that I need to convert from dd/mm/yyyy to yyyy-mm-dd format. For example 17/01/2010 should be converted to 2010-01-17. How can I do this in Perl or Python? |
|||||
|
or more hackish way (that doesn't check for validity of values):
|
|||||||||||||||||||||
|
|
If you are guaranteed to have well-formed data consisting of nothing else but a singleton date in the DD-MM-YYYY format, then this works:
That works on a
If you prefer a more "grammatical" regex, so that it’s easier to maintain and update, you can instead use this:
Finally, if you have Unicode data, you might want to be a bit more careful.
You can see how each of these four approaches performs when confronted with sample input strings like these:
Now letting
Now let’s suppose that you actually do want to match non-ASCII digits. For example:
or even
So imagine you have a date in mathematical monospace digits, like this:
The Perl code will work just fine on that:
I think you’ll find that Python has a pretty brain‐damaged Unicode model whose lack of support for abstract characters and strings irrespective of content makes it ridiculously difficult to write things like this. It’s also tough to write legible regular expressions in Python where you decouple the declaration of the subexpressions from their execution, since But hey, if you think that’s bad in Python compared to Perl (and it certainly is), just try any other language. I haven’t found one that isn’t still worse for this sort of work. As you see, you run into real problems when you ask for regex solutions from multiple languages. First of all, the solutions are difficult to compare because of the different regex flavors. But also because no other language can compare with Perl for power, expressivity, and maintainability in its regular expressions. This may become even more obvious once arbitrary Unicode enters the picture. So if you just wanted Python, you should have asked for only that. Otherwise it’s a terribly unfair contest that Python will nearly always lose; it’s just too messy to get things like this correct in Python, let alone both correct and clean. That’s asking more of it than it can produce. In contrast, Perl’s regexes excel at both those. |
|||||||||||||||||
|
|
Use Time::Piece (in core since 5.9.5), very similar to the Python solution accepted, as it provides the strptime and strftime functions:
or
|
|||||||
|
|
Go with Perl: the
If you do need to parse these dates (eg to compute their day of week or other calendar-type operations), look into DateTimeX::Easy (you can install it with
|
|||
|
Perl :
Then you just have to run:
|
|||||||
|
|
Perl:
|
||||
|
In Perl you can do:
|
|||
|
using python
|
|||
|
|
|
In glorious perl-oneliner form:
But seriously I would do it like this:
Which will work on a pipe, converting and printing one date per line. |
|||||||||||||||||
|