hash es un método de clase String en Ruby que se utiliza para devolver un hash basado en la longitud, el contenido y la codificación de la string.
Sintaxis: str.hash
Parámetros: Aquí, str es la string dada.
Devuelve: un hash basado en la longitud, el contenido y la codificación de la string.
Ejemplo 1:
# Ruby program to demonstrate # the hash method # Taking a string and # using the method puts "Ruby".hash puts "String".hash
Producción:
3142682481284465636 -3118341609802567384
Ejemplo 2:
# Ruby program to demonstrate # the hash method # Taking a string and # using the method puts "Sample".hash puts "Program".hash
Producción:
1285954436548758293 -6969951348417810
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