Top > Ruby [2.2.2] > select


Enumerable# select

p [1,2,3,4,5,6,7,8,9,0].select{ |val| val % 2 == 0 }
                                         # [2, 4, 6, 8, 0]
p [1,2,3,4,5,6,7,8,9,0].select{ |val| val < 4 }
                                         # [1, 2, 3, 0]

配列から条件に合うものだけを抜き出せます。



Copyright © 2015 AchaPorutePiipo All Rights Reserved.