in reply to Re^2: DateCalc using Date::Manip
in thread DateCalc using Date::Manip

did you try

my $dtopt= DateCalc($dt1,$dt2,1);
or maybe these will work
my $dtopt= DateCalc($dt1,$dt2,'semi');
or
my $dtopt= DateCalc($dt1,$dt2,'approx');

Replies are listed 'Best First'.
Re^4: DateCalc using Date::Manip
by tsdesai (Acolyte) on Jan 10, 2017 at 12:11 UTC
    did you try my $dtopt= DateCalc($dt1,$dt2,1); output is 0:4:4:2:0:0:0 or maybe these will work my $dtopt= DateCalc($dt1,$dt2,'semi'); 0:4:4:2:0:0:0 my $dtopt= DateCalc($dt1,$dt2,'approx'); 0:4:4:2:0:0:0 I am looking for the output as +0:0:+21:5:1:0:0 I am really sorry this is not my code.I am trying the fix old code after the version updates. Many Thanks,

      ok one more to try

      print Delta_Format($dtopt,'semi','+%yv:%Mv:+%wv:%dv:%hv:%mv:%sv');
      based on the code from Krambambuli above but using semi

        I do not get any output for that one.