getbyte es un método de clase String en Ruby que se utiliza para devolver el byte índice como un número entero.
Sintaxis: str.getbyte(índice)
Parámetros: Aquí, str es la string dada.
Devuelve: Indexth byte como un entero.
Ejemplo 1:
# Ruby program to demonstrate # the getbyte method # Taking a string and # using the method puts "Ruby".getbyte(1) puts "String".getbyte(4)
Producción:
117 110
Ejemplo 2:
# Ruby program to demonstrate # the getbyte method # Taking a string and # using the method # it will return nil puts "Sample".getbyte(7) puts "Program".getbyte(4)
Producción:
114
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