Help for this page

Select Code to Download


  1. or download this
    $date_string = "Jun 03 19:49:27 2018";
    $fmt = '%b %d %H:%M:%S %Y';
    $time=Time::Piece->strptime( $date_string, $fmt );
    print $time->strftime() ."\n";
    
  2. or download this
    my $date_string = "Jun 03 19:49:27 2018 +0200";
    my $fmt = '%b %d %H:%M:%S %Y %z';
    my $time=Time::Piece->strptime( $date_string, $fmt );
    print $time->strftime() ."\n";
    
  3. or download this
    So, 03 Jun 2018 19:49:27 UTC
    
  4. or download this
    $date_string = "Jun 03 19:49:27 2018";
    $fmt = '%b %d %H:%M:%S %Y';
    ...
    print $time->strftime() ."\n";
    ...
    So, 03 Jun 2018 19:49:27 CEST