How to display the current date in "mm/dd/yyyy" format in Rails

Ruby on-RailsRubyDate

Ruby on-Rails Problem Overview


In my view I want to display the current date in "mm/dd/yyyy" format.

Ruby on-Rails Solutions


Solution 1 - Ruby on-Rails

<%= Time.now.strftime("%m/%d/%Y") %>

Solution 2 - Ruby on-Rails

You could simply do (substitute in Time for DateTime if using straight Ruby -- i.e. no Rails):

DateTime.now.strftime('%m/%d/%Y')

If you're using that format a lot, you might want to create a date_time_formats initializer in your RAILS_ROOT/config/initializers folder (assuming Rails 2), something like this:

# File: date_time_formats.rb
ActiveSupport::CoreExtensions::Time::Conversions::DATE_FORMATS.merge!(
  :human => "%m/%d/%Y"
)

Which will then let you use the more friendly version of DateTime.now.to_s(:human) in your code.

Solution 3 - Ruby on-Rails

I think you can use .strftime:

t = Time.now()
t.strftime("The date is %m/%d/%y")

This should give "The date is 09/09/10". See http://www.wetware.co.nz/blog/2009/07/rails-date-formats-strftime/">here</a> for a great list of the format codes for .strftime.

Solution 4 - Ruby on-Rails

If you don't need the full year you could try Time.now.strftime('%D')

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionakshay1188View Question on Stackoverflow
Solution 1 - Ruby on-RailsJeffView Answer on Stackoverflow
Solution 2 - Ruby on-RailsjerhinesmithView Answer on Stackoverflow
Solution 3 - Ruby on-RailsBudgieView Answer on Stackoverflow
Solution 4 - Ruby on-RailsSpyrosView Answer on Stackoverflow