Help for this page

Select Code to Download


  1. or download this
     # my $date = $arr_ref->$datecol;
    
    # $date =~ s/ //;
    
  2. or download this
    sub fix_oracle_date {
        my( $date ) = @_;
    ...
    
        return $date
    }
    
  3. or download this
    use Test::More;
    
    ...
    is fix_oracle_date('08/13/2018'), '8/13/2018', "Correct date for 8/13/
    +2018";
    
    done_testing;