LoginSignup
19
20

More than 5 years have passed since last update.

空白区切りの文字列を整数の配列に変換する

Last updated at Posted at 2012-04-30

Ruby1.9用.プロコンなどで便利かも.

"1 1 2 3 5 8 13 21".split.map(&:to_i)
# => [1, 1, 2, 3, 5, 8, 13, 21]

# 多重代入との組み合せ
w, h = "30 35".split.map(&:to_i)
19
20
1

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
19
20