gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 16:24:51 25 4
gpt4 key购买 nike

我只想将日期从 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");

关于perl - 如何更改 Perl 中的日期格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8675706/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com