Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^2: TimeZone convert problem.

by hmb104 (Sexton)
on Oct 04, 2012 at 19:56 UTC ( [id://997316]=note: print w/replies, xml ) Need Help??


in reply to Re: TimeZone convert problem.
in thread TimeZone convert problem.

Thanks

Replies are listed 'Best First'.
Re^3: TimeZone convert problem.
by Anonymous Monk on Oct 04, 2012 at 20:35 UTC
    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://997316]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (7)
As of 2024-03-19 02:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found