作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个包含日期值的 Perl 字符串变量。我想检查 str1 变量日期值是否比 str2 值早 1 天。我怎样才能检查它?如果它在 str2 之前没有 1 天,那么我需要打印一条错误消息。
$str1="20120704"
$str2="20120705
最佳答案
使用标准的 Time::Piece 模块
#!/usr/bin/perl
use strict;
use warnings;
use 5.010;
use Time::Piece;
my $format = '%Y%m%d';
while (<DATA>) {
chomp;
my ($str1, $str2) = split;
my $dt1 = Time::Piece->strptime($str1, $format);
my $dt2 = Time::Piece->strptime($str2, $format);
print "$str1 / $str2: ";
if ($dt2->julian_day - $dt1->julian_day == 1) {
say "ok";
} else {
say "not ok";
}
}
__END__
20120704 20120705
20120630 20120701
关于perl - 如何在 Perl 中比较日期字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11339483/
我是一名优秀的程序员,十分优秀!