Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Months between dates ?

by thanos1983 (Parson)
on Jun 10, 2019 at 11:00 UTC ( [id://11101193]=note: print w/replies, xml ) Need Help??


in reply to Months between dates ?

Hello bgroper,

An alternative way on using the Date::Manip module could be:

#!/usr/bin/perl use strict; use warnings; use Date::Manip; use feature 'say'; my $date1 = ParseDate("today"); my $date2 = ParseDate("2019-08-10"); my $delta = DateCalc($date2, $date1, \my $err, 1); say Delta_Format($delta, "Months: %Mv Days: %dv"); __END__ $ perl test.pl Months: -2 Days: 0

You can create your own conditions based on the string when you want to have an alarm etc.

Hope this helps, BR.

Seeking for Perl wisdom...on the process of learning...not there...yet!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11101193]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-16 06:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found