LoginSignup
0
0

More than 1 year has passed since last update.

Rubyで期間のフォーマット

Last updated at Posted at 2017-02-01

ruby-durationを使う

インストール

Gemfile
gem 'ruby-duration'

フォーマットの書式

Duration.new(10.days).format("%tdu") # => "10 日"
Duration.new(10.days).format("%thu") # => "240 時間"
Duration.new(10.days).format("%tmu") # => "14400 分"
Duration.new(10.days).format("%tsu") # => "864000 秒"
0
0
0

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
0
0