in reply to Compare two dates
use strict; my $d1 = '2019-06-08'; my $d2 = '2019-06-08'; my $RESULT = $d2 cmp $d1; if ($RESULT > 0) { print "\n$d1 is smaller.\n"; } elsif ($RESULT < 0) { print "\n$d1 is larger.\n"; } else { print "\nThe dates are equal!\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Compare two dates
by Laurent_R (Canon) on Jul 22, 2019 at 22:54 UTC |