如何计算perl中的日期差异

前端之家收集整理的这篇文章主要介绍了如何计算perl中的日期差异前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是perl脚本的新手.我有一个要求,我需要在分钟/秒中找到两个日期的差异
$date1 =  Fri Aug 30 10:53:38 2013
$date2 =  Fri Aug 30 02:12:25 2013

你能告诉我我们如何实现这一点,解析,计算,模块需求和所有

谢谢
Goutham

解决方法

Time::Piece自2007年以来一直是Perl的标准组成部分.
#!/usr/bin/perl

use strict;
use warnings;
use 5.010;
use Time::Piece;

my $date1 = 'Fri Aug 30 10:53:38 2013';
my $date2 = 'Fri Aug 30 02:12:25 2013';

my $format = '%a %b %d %H:%M:%S %Y';

my $diff = Time::Piece->strptime($date1,$format)
         - Time::Piece->strptime($date2,$format);

say $diff;
原文链接:https://www.f2er.com/Perl/172800.html

猜你在找的Perl相关文章