Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: How do I convert date format between 'DD-MM-YYYY' and 'YYYY-MM-DD' back & forth?

by naikonta (Curate)
on May 08, 2007 at 19:39 UTC ( [id://614229]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # UK-style
    my $in_date = '30-04-2007';
    ...
    (my $pr_date = $db_date) =~ s/(\d\d\d\d)-(\d\d)-(\d\d)/$3-$2-$1/;
    print "in: $in_date; db: $db_date; pr: $pr_date\n";
    # in: 30-04-2007; db: 2007-04-30; pr: 30-04-2007
    
  2. or download this
    # US-style
    my $in_date = '05-14-2007';
    ...
    (my $pr_date = $db_date) =~ s/(\d\d\d\d)-(\d\d)-(\d\d)/$2-$3-$1/;
    print "in: $in_date; db: $db_date; pr: $pr_date\n";
    # in: 05-14-2007; db: 2007-05-14; pr: 05-14-2007
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (6)
As of 2024-04-25 15:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found