Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Date format YYYY-MM-DD HH-MM-SS

by keszler (Priest)
on Oct 13, 2013 at 14:50 UTC ( [id://1058078]=note: print w/replies, xml ) Need Help??


in reply to Date format YYYY-MM-DD HH-MM-SS

In the spirit of Tim Toady, when you have all the date/time elements in separate variables printf / sprintf can be your friend:
use strict; use warnings; my $format = "%4u-%02u-%02u %02u-%02u-%02u"; my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime; printf "$format\n", $year+1900, $mon+1, $mday, $hour, $min, $sec; my $event = 'The Eagle has landed (' . sprintf($format, 1969, 7, 20, 2 +0, 17, 40) . " UTC)\n"; print $event; __END__ 2013-10-13 10-49-01 The Eagle has landed (1969-07-20 20-17-40 UTC)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1058078]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-03-29 06:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found