method
to_formatted_s
v2.0.1 -
Show latest stable
-
0 notes -
Class: ActiveSupport::CoreExtensions::Time::Conversions
- 1.0.0 (0)
- 1.1.0 (0)
- 1.1.1 (0)
- 1.1.6 (0)
- 1.2.0 (0)
- 1.2.6 (0)
- 2.0.0 (25)
- 2.0.1 (0)
- 2.0.3 (11)
- 2.1.0 (0)
- 2.2.1 (2)
- 2.3.2 (0)
- 2.3.8 (0)
- 3.0.0
- 3.0.5
- 3.0.7
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.3
- 3.2.8
- 3.2.13
- What's this?
to_formatted_s(format = :default)
public
Convert to a formatted string - see DATE_FORMATS for predefined formats. You can also add your own formats to the DATE_FORMATS constant and use them with this method.
This method is also aliased as to_s.
Examples:
time = Time.now # => Thu Jan 18 06:10:17 CST 2007 time.to_formatted_s(:time) # => "06:10:17" time.to_s(:time) # => "06:10:17" time.to_formatted_s(:db) # => "2007-01-18 06:10:17" time.to_formatted_s(:short) # => "18 Jan 06:10" time.to_formatted_s(:long) # => "January 18, 2007 06:10" time.to_formatted_s(:long_ordinal) # => "January 18th, 2007 06:10" time.to_formatted_s(:rfc822) # => "Thu, 18 Jan 2007 06:10:17 -0600"


