Ruby/Array/join
Материал из Wiki.crossplatform.ru
(Различия между версиями)
ViGOur (Обсуждение | вклад) м (1 версия: Импорт выборки материалов по Ruby) |
Текущая версия на 18:01, 13 сентября 2010
join all the elements together into one big string by calling the join method on the array
x = ["Word", "Play", "Fun"] puts x.join
join method can take an optional parameter that"s placed between each element in the resulting string
x = ["Word", "Play", "Fun"] puts x.join(", ")
use the compact method, which removes all nils from an array.
months = %w[ nil January February March April May June July August September October November December ] puts months.rupact.join( ", " )