1. ホーム
  2. ruby

[解決済み] Ruby - 文字列を日付に変換する

2022-02-13 22:15:22

質問

2011-06-02T23:59:59+05:30" のような文字列があるのですが、これは何ですか?

これを日付形式に変換したいのですが、"2011-06-02"という日付だけをパースする必要があります。

どのように解決するのですか?

Ruby 1.9.2の場合。

require 'date'    # If not already required. If in Rails then you don't need this line).
puts DateTime.parse("2011-06-02T23:59:59+05:30").to_date.to_s