Ruby/String/each
Материал из Wiki.crossplatform.ru
(Различия между версиями)
ViGOur (Обсуждение | вклад) м (1 версия) |
Текущая версия на 17:56, 13 сентября 2010
Call each on a string with escape sequence
"foo\nbar".each { |x| puts x } # foo # bar
returning the length of each word
"In the early".split.each { |p| print p.length, " " }