>
>Thanks,
>
>Marcus Friedlaender
>
>
>___
>Perl-Win32-Users mailing list
>[EMAIL PROTECTED]
>http://listserv.ActiveState.com/mailman/listinfo/perl-win32-
users
>
>
Hermen Lessch
all "unnecessary" tagsĀ
> Frodo
Hermen Lesscher
===
===
To regret one's own experiences is to arrest one's own
development
Oscar Wilde
=
Thought of formatting it as '20001210' and '20002111' (MMDD)and then
comparing as numbers?
$date1 =~ s|(..) (..) ()|$3$2$1|;
$date2 =~ s|(..) (..) ()|$3$2$1|;
if ($date1 < $date2) {
# YEAH!
}
else {
}
If this is all you want, there's no need to load modules like Date::Calc
(