bytesize es un método de clase String en Ruby que se usa para obtener la longitud de la string dada en bytes.
Sintaxis: str.bytesize
Parámetros: Aquí, str es la string dada.
Devoluciones: este método devuelve la longitud de la string en bytes.
Ejemplo 1:
# Ruby program to demonstrate # the bytesize method # Taking a string and # using the method puts "GeeksforGeeks".bytesize puts "Ruby".bytesize
Producción:
13 4
Ejemplo 2:
# Ruby program to demonstrate # the bytesize method # Taking a string and # using the method puts "String Class".bytesize puts "Methods".bytesize
Producción:
12 7
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