LoginSignup
0
0

More than 1 year has passed since last update.

Rails 配列からnil,空文字を取り除く 配列の結合

Last updated at Posted at 2021-06-16

配列からnil,空文字を取り除きたい時

.reject(&:blank?)

配列を結合したい時

a = ["apple", "banana", "orange"]
b = ["grape", "apple", "orange"]
a | b
=> ["apple", "banana", "orange", "grape"]

+を使った場合

a = ["apple", "banana", "orange"]
b = ["grape", "apple", "orange"]
a + b
=> ["apple", "banana", "orange", "grape", "apple", "orange"]
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