Can anyone help me how to convert this date format "Mon, 24 Aug 2009 17:00:44 +0800" into something like this, "2009-08-24 17:00:44" in Perl? I've been browsing in CPAN for modules, but still I wasn't able to find what I was looking for. The first format is retrieved from an email account using Mail::POP3Client. The other one is from a query in database. My aim here is to compare these two dates, but it won't work if they are in different format.. Any suggestions pls? =)
|
|
I would use Date::Calc Split the string to get the needed values and use Decode
|
|||
|
|
I'd use DateTime::Format::Strptime to convert the date into a DateTime object, then ask it to provide the desired representation of the date. e.g.:
|
||
|
|
|
|
If you are certain that the Timestamp Format from your POP3 client will not change, then I would suggest converting the format in the database query itself. You have not mentioned what database you use, but all the ones that I have used (Oracle, PostgreSQL, MySQL) have functions that give you any format you want in your select statement. If you tell us what database you are using, I can tell you what the timestamp formatting functions are. |
||
|
|
