In Ruby on Rails, how do I format a date with the "th" suffix, as in, "Sun Oct 5th"? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T12:24:47Z http://stackoverflow.com/feeds/question/165170 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/165170/in-ruby-on-rails-how-do-i-format-a-date-with-the-th-suffix-as-in-sun-oct-5t 18 In Ruby on Rails, how do I format a date with the "th" suffix, as in, "Sun Oct 5th"? Jonathan Tran 2008-10-03T00:12:07Z 2009-01-11T16:10:30Z <p>I want to display dates in the format: short day of week, short month, day of month without leading zero but including "th", "st", "nd", or "rd" suffix.</p> <p>For example, the day this question was asked would display "Thu Oct 2nd".</p> <p>I'm using Ruby 1.8.7, and <a href="http://www.ruby-doc.org/core-1.8.7/classes/Time.html#M000139" rel="nofollow">Time.strftime</a> just doesn't seem to do this. I'd prefer a standard library if one exists.</p> http://stackoverflow.com/questions/165170/in-ruby-on-rails-how-do-i-format-a-date-with-the-th-suffix-as-in-sun-oct-5t/165201#165201 -2 Answer by Windows programmer for In Ruby on Rails, how do I format a date with the "th" suffix, as in, "Sun Oct 5th"? Windows programmer 2008-10-03T00:20:56Z 2008-10-03T00:20:56Z <p>Ruby came from Japan, right? 1 = tsuitachi, 2 = futsuka, 3 = mikka, ..., 30 = sanjuunichi. Is there really a function for that?</p> http://stackoverflow.com/questions/165170/in-ruby-on-rails-how-do-i-format-a-date-with-the-th-suffix-as-in-sun-oct-5t/165202#165202 12 Answer by mwilliams for In Ruby on Rails, how do I format a date with the "th" suffix, as in, "Sun Oct 5th"? mwilliams 2008-10-03T00:21:31Z 2008-10-03T00:21:31Z <p>You can use the ordinalize helper method on numbers. </p> <pre><code>&gt;&gt; 3.ordinalize =&gt; "3rd" &gt;&gt; 2.ordinalize =&gt; "2nd" &gt;&gt; 1.ordinalize =&gt; "1st" </code></pre> http://stackoverflow.com/questions/165170/in-ruby-on-rails-how-do-i-format-a-date-with-the-th-suffix-as-in-sun-oct-5t/165213#165213 30 Answer by Bartosz Blimke for In Ruby on Rails, how do I format a date with the "th" suffix, as in, "Sun Oct 5th"? Bartosz Blimke 2008-10-03T00:25:37Z 2008-10-03T00:25:37Z <pre><code>&gt;&gt; time = Time.new =&gt; Fri Oct 03 01:24:48 +0100 2008 &gt;&gt; time.strftime("%a %b #{time.day.ordinalize}") =&gt; "Fri Oct 3rd" </code></pre> http://stackoverflow.com/questions/165170/in-ruby-on-rails-how-do-i-format-a-date-with-the-th-suffix-as-in-sun-oct-5t/165219#165219 0 Answer by MatthewFord for In Ruby on Rails, how do I format a date with the "th" suffix, as in, "Sun Oct 5th"? MatthewFord 2008-10-03T00:27:35Z 2008-10-03T00:27:35Z <p>Take a look at the merb-helpers date_time_formatting module, this has the method to_ordinalized, which will do what you want.</p> <p><a href="http://gist.github.com/14484" rel="nofollow">http://gist.github.com/14484</a></p> http://stackoverflow.com/questions/165170/in-ruby-on-rails-how-do-i-format-a-date-with-the-th-suffix-as-in-sun-oct-5t/165225#165225 2 Answer by Jimmy Schementi for In Ruby on Rails, how do I format a date with the "th" suffix, as in, "Sun Oct 5th"? Jimmy Schementi 2008-10-03T00:29:53Z 2008-10-03T00:29:53Z <pre><code>&gt;&gt; require 'activesupport' =&gt; [] &gt;&gt; t = Time.now =&gt; Thu Oct 02 17:28:37 -0700 2008 &gt;&gt; formatted = "#{t.strftime("%a %b")} #{t.day.ordinalize}" =&gt; "Thu Oct 2nd" </code></pre> http://stackoverflow.com/questions/165170/in-ruby-on-rails-how-do-i-format-a-date-with-the-th-suffix-as-in-sun-oct-5t/165350#165350 1 Answer by Patrick McKenzie for In Ruby on Rails, how do I format a date with the "th" suffix, as in, "Sun Oct 5th"? Patrick McKenzie 2008-10-03T01:37:38Z 2008-10-03T01:37:38Z <p>I like Bartosz's answer, but hey, since this is Rails we're talking about, let's take it one step up in devious. (Edit: Although I was going to just monkeypatch the following method, turns out there is a cleaner way.)</p> <p><code>DateTime</code> instances have a <code>to_formatted_s</code> method supplied by ActiveSupport, which takes a single symbol as a parameter and, if that symbol is recognized as a valid predefined format, returns a String with the appropriate formatting. </p> <p>Those symbols are defined by <code>Time::DATE_FORMATS</code>, which is a hash of symbols to either strings for the standard formatting function... or procs. Bwahaha.</p> <pre><code>d = DateTime.now #Examples were executed on October 3rd 2008 Time::DATE_FORMATS[:weekday_month_ordinal] = lambda { |time| time.strftime("%a %b #{time.day.ordinalize}") } d.to_formatted_s :weekday_month_ordinal #Fri Oct 3rd </code></pre> <p>But hey, if you can't resist the opportunity to monkeypatch, you could always give that a cleaner interface:</p> <pre><code>class DateTime Time::DATE_FORMATS[:weekday_month_ordinal] = lambda { |time| time.strftime("%a %b #{time.day.ordinalize}") } def to_my_special_s to_formatted_s :weekday_month_ordinal end end DateTime.now.to_my_special_s #Fri Oct 3rd </code></pre> http://stackoverflow.com/questions/165170/in-ruby-on-rails-how-do-i-format-a-date-with-the-th-suffix-as-in-sun-oct-5t/433127#433127 6 Answer by Richard for In Ruby on Rails, how do I format a date with the "th" suffix, as in, "Sun Oct 5th"? Richard 2009-01-11T16:10:30Z 2009-01-11T16:10:30Z <p>Taking Patrick McKenzie's answer just a bit further, you could create a new file in your <code>config/initializers</code> directory called <code>date_format.rb</code> (or whatever you want) and put this in it:</p> <pre><code>ActiveSupport::CoreExtensions::Time::Conversions::DATE_FORMATS.merge!( :my_date =&gt; lambda { |time| time.strftime("%a, %b #{time.day.ordinalize}") } ) </code></pre> <p>Then in your view code you can format any date simply by assigning it your new date format:</p> <pre><code>My Date: &lt;%= h some_date.to_s(:my_date) %&gt; </code></pre> <p>It's simple, it works, and is easy to build on. Just add more format lines in the date_format.rb file for each of your different date formats. Here is a more fleshed out example.</p> <pre><code>ActiveSupport::CoreExtensions::Time::Conversions::DATE_FORMATS.merge!( :datetime_military =&gt; '%Y-%m-%d %H:%M', :datetime =&gt; '%Y-%m-%d %I:%M%P', :time =&gt; '%I:%M%P', :time_military =&gt; '%H:%M%P', :datetime_short =&gt; '%m/%d %I:%M', :due_date =&gt; lambda { |time| time.strftime("%a, %b #{time.day.ordinalize}") } ) </code></pre>