Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    close $infile;
    close $outfile;
    move($outfilename,$infilename);
    
  2. or download this
    use Date::Parse;
    use Date::Format;
    
    @time = strptime("20150518");
    print strftime("%e %b %Y",@time);