Hi all,
I have an old perl code running from perl 5 version 12 using DateManip and DateCalc on Solaris which runs as it should. We have recently migrated to linux perl 5 version 16 and the DateCalc function doesn't work at all. I am trying to count days between two dates for example, i have tried to output what are the inputs to the DateCalc function
use Date::Manip;
my $dt1='2016080100:00:00';
my $dt2='2016123100:00:00';
my $dtopt= DateCalc($dt1,$dt2);
print $dtopt;
The above code outputs
0:0:0:0:6576:0:0
where as the old version on Solaris outputs as
+0:0:+21:5:1:0:0
I am expecting the output to be as old version of perl.
I know there is some problem with the format but unable to figure it out. I would really appreciate any help.
I have tried to use ParseDate,Delta_Format but the result is same.
P.S this is not my code i am trying to fix this.
Many Thanks,
Teju
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.