Help for this page

Select Code to Download


  1. or download this
      /(....)(..)(..)/;
      $dt = DateTime->new( year => $1, month => $2, day => $3 );
    
  2. or download this
      my %th; @th{qw( year month day )} = /(....)(..)(..)/;
      $dt = DateTime->new( %th );