How do I get Ruby to parse time as if it were in a

2019-02-05 11:25发布

I'm parsing something like this:

11/23/10 23:29:57

which has no time zone associated with it, but I know it's in the UTC time zone (while I'm not). How can I get Ruby to parse this as if it were in the UTC timezone?

标签: ruby timezone
4条回答
Lonely孤独者°
2楼-- · 2019-02-05 11:35

If your using rails you can use the ActiveSupport::TimeZone helpers

current_timezone = Time.zone
Time.zone = "UTC"
Time.zone.parse("Tue Nov 23 23:29:57 2010") # => Tue, 23 Nov 2010 23:29:57 UTC +00:00
Time.zone = current_timezone

It is designed to have the timezone set at the beginning of the request based on user timezone.

Everything does need to have Time.zone on it, so Time.parse would still parse as the servers timezone.

http://api.rubyonrails.org/classes/ActiveSupport/TimeZone.html

Note: the time format you have above was no longer working, so I changed to a format that is supported.

查看更多
Bombasti
3楼-- · 2019-02-05 11:38

You could just append the UTC timezone name to the string before parsing it:

require 'time'
s = "11/23/10 23:29:57"
Time.parse(s) # => Tue Nov 23 23:29:57 -0800 2010
s += " UTC"
Time.parse(s) # => Tue Nov 23 23:29:57 UTC 2010
查看更多
放我归山
4楼-- · 2019-02-05 11:52

If you are using ActiveSupport [from Rails, e.g], you can do this:

ActiveSupport::TimeZone["GMT"].parse("..... date string")
查看更多
倾城 Initia
5楼-- · 2019-02-05 11:54

An aliter to @Pete Brumm's answer without Time.zone set/unset

Time.zone.parse("Tue Nov 23 23:29:57 2010") + Time.zone.utc_offset
查看更多
登录 后发表回答