Help for this page

Select Code to Download


  1. or download this
    my ($year, $month, $day, $hour, $min, $sec) = 
        split /[- :]/, $_[0];
    
  2. or download this
    
    my $date = dateconverter($date_begin);
    ...
      my @bits = split /[- :]/, $_[0];
      return join ".", @bits[0,1,2];
    }