==() es un método de clase String en Ruby que se utiliza para verificar si str==obj o no.
Sintaxis: str == obj
Parámetros: Aquí, str es la string dada y obj es el objeto a comparar.
Devuelve: Verdadero o Falso según la igualdad de las dos strings.
Ejemplo 1:
#ruby 2.3.1 # Ruby program to demonstrate # the == method # Taking a string and # using the method puts "Ruby" == "Ruby" puts "Hello" == "Hell"
Producción:
true false
Ejemplo 2:
#ruby 2.3.1 # Ruby program to demonstrate # the == method # Taking a string and # using the method puts "ayucdef" == "ayucdefg" puts "Ruby" == 77
Producción:
false false
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