How do I convert my return using DateTime from:
This is my date:2011-11-26T20:11:06
to
This is my date:20111126
Using this existing code:
use DateTime qw();
my $dt3 = DateTime->now->subtract(days => 1);
print "This is my date:$dt3\n"
|
|
|
Just add
|
||||
|
|
|
There are also specific (e.g. DateTime::Format::Atom) and general (e.g. DateTime::Format::Strptime) formatting helper tools you can use:
PS — Your code will give the date in or near England, not the date where you are located. For that, you want
or the more appropriate
|
|||
|
|
|
There are about a dozen ways to process dates in Perl. However, if you know the format of the date string, there maybe no reason to call a datetime module:
I'm not familiar with DateTime, but I'd be surprised if there wasn't a way to format the data when you display it. I personally prefer Time::Piece and Time::Seconds for these things. These modules have been part of the standard Perl installation since 5.10. Plus, I find the interface to be fairly simple and clean.
For some reason, you can't say |
|||
|
|