Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: TimeZone convert problem.

by Anonymous Monk
on Oct 04, 2012 at 19:45 UTC ( [id://997307]=note: print w/replies, xml ) Need Help??


in reply to TimeZone convert problem.

Replies are listed 'Best First'.
Re^2: TimeZone convert problem.
by hmb104 (Sexton) on Oct 04, 2012 at 19:56 UTC
    Thanks
      Start with one of these
      my $dt = DateTime::Format::ISO8601->parse_datetime( $datestr ); my $dt = DateTime::Format::DateParse->parse_datetime( $datestr ); my $dt = DateTime::Format::Flexible->parse_datetime( $datestr );
      Then finish with
      $dt->set_time_zone( 'Country/City' ); print $dt->strftime( q[%a %b %e %H:%M:%S %Z %Y] ), "\n";
      or whatever
        or
        my $dt = DateTime::Format::RFC3339->parse_datetime( $datestr );

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (2)
As of 2024-04-26 00:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found