Help for this page

Select Code to Download


  1. or download this
    use Time::Piece;
    
    my $date = localtime->strptime("Thu Jan 8 07:01:01",'%a %b %d %T');
    print $date . "\n";
    
  2. or download this
    use Time::Piece;
    
    my $year = localtime->year;
    my $date = localtime->strptime("Thu Jan 8 $year 07:01:01",'%a %b %d %Y
    + %T');
    print $date . "\n";