Re: Launching URLs

2001-05-07 Thread Hermen Lesscher
> >Thanks, > >Marcus Friedlaender > > >___ >Perl-Win32-Users mailing list >[EMAIL PROTECTED] >http://listserv.ActiveState.com/mailman/listinfo/perl-win32- users > > Hermen Lessch

Re: Microsoft Word HTML clean up

2001-04-17 Thread Hermen Lesscher
all "unnecessary" tags > Frodo Hermen Lesscher === === To regret one's own experiences is to arrest one's own development Oscar Wilde =

Re: Comparing dates

2000-12-18 Thread Hermen Lesscher
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 (