Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8460733
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T13:41:21+00:00 2026-06-10T13:41:21+00:00

In my perl program, I am calculating warranty start date from warranty end date

  • 0

In my perl program, I am calculating warranty start date from warranty end date The difference is 3 years. Following is the chunk of code that I have written so far:

use Time::ParseDate;
use DateTime;
use POSIX;
use DateTime::Duration;

my $warranty_expiration_string = "20-May-07";
my $epoch = parsedate($warranty_expiration_string);
my $warranty_expiration = strftime "%D", localtime($epoch);   # returns: 05/20/07

How do I deduct 3 years from $warranty_expiration to get $warranty_start date?
I tried,

$warranty_start->subtract(DateTime::Duration->new('years' => 3));

..but it did not work.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T13:41:23+00:00Added an answer on June 10, 2026 at 1:41 pm

    I don’t understand all the different date/time modules being mixed. You only need some of them, not all of them. If you want to do date math using DateTime anyway, you want something like this:

    use DateTime;
    use DateTime::Format::Strptime;
    
    my $dateparser = DateTime::Format::Strptime->new( pattern => '%d-%b-%y' );
    
    my $warranty_expiration = $dateparser->parse_datetime($warranty_expiration_string);
    my $warranty_start      = $warranty_expiration->clone->subtract( years => 3);
    

    Most of the DateTime::Format::* modules are meant to be used with DateTime and I prefer to use those if I can.

    You may also want to read more about the ongoing DateTime project and the list of recommended modules at:

    • http://datetime.perl.org
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Perl program that is reading html tags from a text file.
We have a Perl program that ran well on all Windows platforms so far.
I have a perl program that takes input and output file arguments, and I'd
I have a Perl program that I've written that parses SQL-like statements and creates
I am studying an existing Perl program, which includes the following line of code:
I have a certain Perl program that I need to run on Windows 7
I'd like to have a perl program that I can call with something like:
I have a Perl program that has a GTK2 GUI (via the Gtk2 package).
I am writing some code for driving Internet Explorer from a Perl 5 program
I have a Perl program that stores regular expressions in configuration files. They are

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.