Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
日付として次の文字列があります
Thu 17 Jan
これをruby日時オブジェクトに変換したい(データベースに保存するため)。私は慢性的に試しましたが、運がありませんでした。
誰かが私を助けてくれますか、事前に感謝します
慢性の必要はありません。SimpleDateで十分です。
require 'date' s = 'Thu 17 Jan' Date.parse(s) # => #<Date: 2013-01-17 ((2456310j,0s,0n),+0s,2299161j)>
以下も使用できます。
s = 'Thu 17 Jan' date = DateTime.parse(s)