bytes es un método de clase String en Ruby que se usa para devolver una array de bytes para la string dada.
Sintaxis: str.bytes
Parámetros: Aquí, str es la string especificada.
Devuelve: una array de bytes.
Ejemplo 1:
# Ruby program to demonstrate # the bytes method # Taking a string and # using the method puts "String".bytes
Producción:
83 116 114 105 110 103
Ejemplo 2:
# Ruby program to demonstrate # the bytes method # Taking a string and # using the method puts "ABCD".bytes
Producción:
65 66 67 68
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