in reply to Re: Matching Date
in thread Matching Date
Also, I'd like to point the OP to Date::Calc and Date::Format.#my $date = "$mon/$mday/$year"; my $date = "10/13/2006"; my ($mon,$mday,$year) = split('/',$date); $mon = sprintf("%02d",$mon); $mday = sprintf("%02d",$mday); $date = "$mon/$mday/$year";
|
|---|