¿terminar con? es un método de clase String en Ruby que se utiliza para verificar si la string especificada termina con uno de los sufijos dados o no.
Sintaxis: str.end_with?
Parámetros: Aquí, str es la string dada.
Devuelve: verdadero si coincide, de lo contrario devuelve falso.
Ejemplo 1:
# Ruby program to demonstrate # the end_with? method # Taking a string and # using the method puts "Ruby".end_with?("by") puts "String".end_with?("ab")
Producción:
true false
Ejemplo 2:
# Ruby program to demonstrate # the end_with? method # Taking a string and # using the method # returns true if one of # the +suffixes+ matches. puts "Sample".end_with?("ple", "sam") puts "Program".end_with?("gr", "pro")
Producción:
true 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