gpt4 book ai didi

ruby - DateTime 解析未按预期工作

转载 作者:数据小太阳 更新时间:2023-10-29 07:03:02 25 4
gpt4 key购买 nike

我的 Ruby 代码看起来像这样。

str = 2010-12-02_12-10-26
puts str
puts DateTime.parse(str, "%Y-%m-%d_%H-%M-%S")

我希望从解析中得到实际时间。相反,我得到这样的输出......

2010-12-02_12-10-26
2010-12-02T00:00:00+00:00

我如何获得解析的时间?

最佳答案

这个有效:

str = "2010-12-02_12-10-26"
puts str
puts DateTime.strptime(str, "%Y-%m-%d_%H-%M-%S")

这个例子在 Codepad .

根据documentation 解析:

Create a new DateTime object by parsing from a String, without specifying the format.

strptime:

Create a new DateTime object by parsing from a String according to a specified format.

关于ruby - DateTime 解析未按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4380688/

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