如何更改Perl中的日期格式?

前端之家收集整理的这篇文章主要介绍了如何更改Perl中的日期格式?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我只想将日期从20111230格式转换为30-dec-2011.

解决方法

为了与TMTOWTDI保持一致,您可以使用 Time::Piece
#!/usr/bin/env perl
use strict;
use warnings;
use Time::Piece;
my $t = Time::Piece->strptime("20111230","%Y%m%d");
print $t->strftime("%d-%b-%Y\n");
原文链接:https://www.f2er.com/Perl/172889.html

猜你在找的Perl相关文章