each_str es un método de clase String en Ruby que se usa para pasar cada carácter de la string dada al bloque dado, o devuelve un enumerador si no se da ningún bloque.
Sintaxis: str.each_byte
Parámetros: Aquí, str es la string dada.
Devuelve: un enumerador.
Ejemplo 1:
# Ruby program to demonstrate # the each_char method # Taking a string and # using the method puts "Ruby".each_char{|b| print b, ' ' } puts "Programming".each_char{|b| print b, ' ' }
Producción:
R u b y Ruby P r o g r a m m i n g Programming
Ejemplo 2:
# Ruby program to demonstrate # the each_char method # Taking a string and # using the method puts "Sample".each_char{|b| print b, ' ' } puts "Input".each_char
Producción:
S a m p l e Sample #
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA