Ruby | String eql? Método

eql? es un método de clase String en Ruby que se utiliza para verificar si las strings son iguales o no, si tienen la misma longitud y contenido.

Sintaxis: str.eql?(Other_str)

Parámetros: Aquí, str y other_str son las strings.

Devuelve: verdadero o falso en base a la igualdad.

Ejemplo 1:

# Ruby program to demonstrate 
# the eql? method 
       
# Taking a string and 
# using the method
puts "Sample".eql?("Sample")
  
# case sensitive
puts "Program".eql?("program")

Producción:

true
false

Ejemplo 2:

# Ruby program to demonstrate 
# the eql? method 
       
# Taking a string and 
# using the method
puts "Ruby".eql?("ruby")
  
# case sensitive
puts "String".eql?("String")

Producción:

false
true

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *