Method: DateTime#to_s
- Defined in:
- ext/date/date_core.c
#to_s ⇒ String
Returns a string in an ISO 8601 format. (This method doesn’t use the expanded representations.)
DateTime.new(2001,2,3,4,5,6,'-7').to_s
#=> “2001-02-03T04:05:06-07:00”
8166 8167 8168 8169 8170 |
# File 'ext/date/date_core.c', line 8166 static VALUE dt_lite_to_s(VALUE self) { return strftimev("%Y-%m-%dT%H:%M:%S%:z", self, set_tmx); } |