0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Ruby】Dateクラスを使わずに月の0を取り除く

Last updated at Posted at 2019-10-19

背景

RubyとSeleniumを使って、DBから持ってきた値を自動で入力する処理を作っているのですが、月を入力する場面で、月がDBには0埋めで保存されていたので、0を取り除く必要がありました。
フレームワークは使っておらず、このためだけにDateクラスを持ってくるのは何か変だなと思ったため、Dateクラスを使わずにやってみました。

結論

gsub!を使う。

検証

使ってみる。

test.rb
month = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12']

month.each do |m|
  m.gsub!(/^0/, '') # 先頭の0を空文字に置き換える
end

p month
出力
["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]

できました。

参考

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?