LoginSignup
59
59

More than 5 years have passed since last update.

created_atなどに日本語曜日入り日付フォーマットを1行で書く

Last updated at Posted at 2012-11-30

Qiitaの記事に、これ(http://qiita.com/items/20853d5fce6677d0f346)
で日付を日本語にできるとあるが、これだと現在時刻ばかりなので、
忘れないために便乗して補足しておく。

Time.now.strftime("%m/%d(#{%w(日 月 火 水 木 金 土)[Time.now.wday]})")

例えば、Postモデルのcreated_atを日本語化したいときは、
<% @posts.each do |post| %>
post.created_at.strftime("%Y/%m/%d(#{%w(日 月 火 水 木 金 土)[post.created_at.wday]})")
<% end %>

この1行でおk。

59
59
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
59
59